diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2018-08-09 20:36:40 +1000 |
---|---|---|
committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2019-01-01 20:03:46 -0800 |
commit | 0865c6370199c65332763c2d407da613f7cb8530 (patch) | |
tree | e3b05f13e01961290698587bd2c379fdc7cdc02b | |
parent | b6f2540b0ab22dba8b90e68f4151e865483d51d9 (diff) | |
download | meta-xilinx-0865c6370199c65332763c2d407da613f7cb8530.tar.gz |
conf/machine: Prepend 'devicetree' directory for device-tree users
Prepend the 'devicetree' subdirectory in IMAGE_BOOT_FILES for machines
that use the device-tree recipe.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
5 files changed, 5 insertions, 5 deletions
diff --git a/meta-xilinx-bsp/conf/machine/microzed-zynq7.conf b/meta-xilinx-bsp/conf/machine/microzed-zynq7.conf index 9cc97ec5..acac58f1 100644 --- a/meta-xilinx-bsp/conf/machine/microzed-zynq7.conf +++ b/meta-xilinx-bsp/conf/machine/microzed-zynq7.conf | |||
@@ -27,7 +27,7 @@ MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "device-tree" | |||
27 | 27 | ||
28 | IMAGE_BOOT_FILES += " \ | 28 | IMAGE_BOOT_FILES += " \ |
29 | boot.bin \ | 29 | boot.bin \ |
30 | ${MACHINE}.dtb \ | 30 | devicetree/${MACHINE}.dtb \ |
31 | uEnv.txt \ | 31 | uEnv.txt \ |
32 | " | 32 | " |
33 | 33 | ||
diff --git a/meta-xilinx-bsp/conf/machine/picozed-zynq7.conf b/meta-xilinx-bsp/conf/machine/picozed-zynq7.conf index 8762832b..a9067b90 100644 --- a/meta-xilinx-bsp/conf/machine/picozed-zynq7.conf +++ b/meta-xilinx-bsp/conf/machine/picozed-zynq7.conf | |||
@@ -31,7 +31,7 @@ MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "device-tree" | |||
31 | 31 | ||
32 | IMAGE_BOOT_FILES += " \ | 32 | IMAGE_BOOT_FILES += " \ |
33 | boot.bin \ | 33 | boot.bin \ |
34 | ${MACHINE}.dtb \ | 34 | devicetree/${MACHINE}.dtb \ |
35 | uEnv.txt \ | 35 | uEnv.txt \ |
36 | " | 36 | " |
37 | 37 | ||
diff --git a/meta-xilinx-bsp/conf/machine/qemu-zynq7.conf b/meta-xilinx-bsp/conf/machine/qemu-zynq7.conf index 2c86edb3..65bd46ad 100644 --- a/meta-xilinx-bsp/conf/machine/qemu-zynq7.conf +++ b/meta-xilinx-bsp/conf/machine/qemu-zynq7.conf | |||
@@ -14,7 +14,7 @@ MACHINE_FEATURES = "ext2 vfat" | |||
14 | SERIAL_CONSOLE = "115200 ttyPS0" | 14 | SERIAL_CONSOLE = "115200 ttyPS0" |
15 | 15 | ||
16 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "device-tree" | 16 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "device-tree" |
17 | IMAGE_BOOT_FILES += "${MACHINE}.dtb" | 17 | IMAGE_BOOT_FILES += "devicetree/${MACHINE}.dtb" |
18 | 18 | ||
19 | # Use the networking setup from qemuarm | 19 | # Use the networking setup from qemuarm |
20 | FILESOVERRIDES_append_pn-init-ifupdown = ":qemuarm" | 20 | FILESOVERRIDES_append_pn-init-ifupdown = ":qemuarm" |
diff --git a/meta-xilinx-bsp/conf/machine/zybo-linux-bd-zynq7.conf b/meta-xilinx-bsp/conf/machine/zybo-linux-bd-zynq7.conf index 27b6d072..6cc89510 100644 --- a/meta-xilinx-bsp/conf/machine/zybo-linux-bd-zynq7.conf +++ b/meta-xilinx-bsp/conf/machine/zybo-linux-bd-zynq7.conf | |||
@@ -32,7 +32,7 @@ EXTRA_IMAGEDEPENDS += " \ | |||
32 | 32 | ||
33 | IMAGE_BOOT_FILES += " \ | 33 | IMAGE_BOOT_FILES += " \ |
34 | boot.bin \ | 34 | boot.bin \ |
35 | ${MACHINE}.dtb \ | 35 | devicetree/${MACHINE}.dtb \ |
36 | bitstream \ | 36 | bitstream \ |
37 | uEnv.txt \ | 37 | uEnv.txt \ |
38 | " | 38 | " |
diff --git a/meta-xilinx-contrib/conf/machine/minized-zynq7.conf b/meta-xilinx-contrib/conf/machine/minized-zynq7.conf index 8ee1980b..2f55c787 100644 --- a/meta-xilinx-contrib/conf/machine/minized-zynq7.conf +++ b/meta-xilinx-contrib/conf/machine/minized-zynq7.conf | |||
@@ -27,6 +27,6 @@ MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "linux-firmware-bcm43430" | |||
27 | 27 | ||
28 | IMAGE_BOOT_FILES += " \ | 28 | IMAGE_BOOT_FILES += " \ |
29 | boot.bin \ | 29 | boot.bin \ |
30 | ${MACHINE}.dtb \ | 30 | devicetree/${MACHINE}.dtb \ |
31 | uEnv.txt \ | 31 | uEnv.txt \ |
32 | " | 32 | " |