summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorDrew Fustini <dfustini@baylibre.com>2022-07-03 20:06:09 -0700
committerRyan Eatmon <reatmon@ti.com>2022-07-12 11:42:17 -0500
commit00b859dbf725df4dace9ddb691adb0b6e821cedc (patch)
treee46cd9599d655e114e926cd6ae8bc36e4fa4bad7 /conf
parent4b490a2e89a76b0b8ac946d1943b7b8dac3a37c8 (diff)
downloadmeta-ti-00b859dbf725df4dace9ddb691adb0b6e821cedc.tar.gz
conf: am43: avoid missing dtb files when ARAGO_BRAND=mainline
For ARAGO_BRAND=mainline with the am43xx machines, avoid the inclusion of device tree files that do not exist upstream. Signed-off-by: Drew Fustini <dfustini@baylibre.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/machine/include/ti43x.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/conf/machine/include/ti43x.inc b/conf/machine/include/ti43x.inc
index fc9af949..729b4274 100644
--- a/conf/machine/include/ti43x.inc
+++ b/conf/machine/include/ti43x.inc
@@ -27,9 +27,11 @@ PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging"
27KERNEL_IMAGETYPE = "zImage" 27KERNEL_IMAGETYPE = "zImage"
28 28
29KERNEL_DEVICETREE = " \ 29KERNEL_DEVICETREE = " \
30 am437x-gp-evm.dtb am437x-gp-evm-hdmi.dtb \ 30 am437x-gp-evm.dtb \
31 ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'am437x-gp-evm-hdmi.dtb', d)} \
31 am437x-sk-evm.dtb am437x-idk-evm.dtb \ 32 am437x-sk-evm.dtb am437x-idk-evm.dtb \
32 am43x-epos-evm.dtb am43x-epos-evm-hdmi.dtb \ 33 am43x-epos-evm.dtb \
34 ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'am43x-epos-evm-hdmi.dtb', d)} \
33" 35"
34 36
35KERNEL_DEVICETREE += "${@oe.utils.conditional('ENABLE_TI_UIO_DEVICES', '1', 'am437x-idk-pru-excl-uio.dtb', '', d)}" 37KERNEL_DEVICETREE += "${@oe.utils.conditional('ENABLE_TI_UIO_DEVICES', '1', 'am437x-idk-pru-excl-uio.dtb', '', d)}"