diff options
author | Mark Hatle <mhatle@xilinx.com> | 2022-06-08 17:41:33 -0700 |
---|---|---|
committer | Mark Hatle <mhatle@xilinx.com> | 2022-06-13 08:30:05 -0700 |
commit | d44ab8d60eda1ba361715ad7dc8976dccf072e86 (patch) | |
tree | a912132bcd2cde139a829783e6129ad482aeece3 /meta-xilinx-bsp | |
parent | f86c64668a4e45b98130410467dafd9c1f7a7fb5 (diff) | |
download | meta-xilinx-d44ab8d60eda1ba361715ad7dc8976dccf072e86.tar.gz |
uboot-device-tree: Move bbappend into meta-xilinx-tools
The provencore bbappend only applied when meta-xilinx-tools is available, so
move the bbappend to meta-xilinux-tools.
Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-bsp')
-rw-r--r-- | meta-xilinx-bsp/recipes-bsp/uboot-device-tree/files/pnc.dtsi | 13 | ||||
-rw-r--r-- | meta-xilinx-bsp/recipes-bsp/uboot-device-tree/uboot-device-tree.bbappend | 9 |
2 files changed, 0 insertions, 22 deletions
diff --git a/meta-xilinx-bsp/recipes-bsp/uboot-device-tree/files/pnc.dtsi b/meta-xilinx-bsp/recipes-bsp/uboot-device-tree/files/pnc.dtsi deleted file mode 100644 index 760b76be..00000000 --- a/meta-xilinx-bsp/recipes-bsp/uboot-device-tree/files/pnc.dtsi +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | / { | ||
2 | reserved-memory { | ||
3 | #address-cells = <2>; | ||
4 | #size-cells = <2>; | ||
5 | ranges; | ||
6 | |||
7 | pnc-reserved-memory@70000000{ | ||
8 | compatible = "pnc,secure-memory"; | ||
9 | reg = <0x0 0x70000000 0x0 0x0FF00000>; | ||
10 | no-map; | ||
11 | }; | ||
12 | }; | ||
13 | }; | ||
diff --git a/meta-xilinx-bsp/recipes-bsp/uboot-device-tree/uboot-device-tree.bbappend b/meta-xilinx-bsp/recipes-bsp/uboot-device-tree/uboot-device-tree.bbappend deleted file mode 100644 index f01276b2..00000000 --- a/meta-xilinx-bsp/recipes-bsp/uboot-device-tree/uboot-device-tree.bbappend +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
2 | |||
3 | SRC_URI:append = "${@bb.utils.contains('MACHINE_FEATURES', 'provencore', ' file://pnc.dtsi', '', d)}" | ||
4 | |||
5 | do_configure:append() { | ||
6 | if [ ${@bb.utils.contains('MACHINE_FEATURES', 'provencore', 'true', '', d)} ]; then | ||
7 | echo '#include "pnc.dtsi"' >> ${DT_FILES_PATH}/system-top.dts | ||
8 | fi | ||
9 | } | ||