From 00b859dbf725df4dace9ddb691adb0b6e821cedc Mon Sep 17 00:00:00 2001 From: Drew Fustini Date: Sun, 3 Jul 2022 20:06:09 -0700 Subject: 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 Signed-off-by: Ryan Eatmon --- conf/machine/include/ti43x.inc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'conf') 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" KERNEL_IMAGETYPE = "zImage" KERNEL_DEVICETREE = " \ - am437x-gp-evm.dtb am437x-gp-evm-hdmi.dtb \ + am437x-gp-evm.dtb \ + ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'am437x-gp-evm-hdmi.dtb', d)} \ am437x-sk-evm.dtb am437x-idk-evm.dtb \ - am43x-epos-evm.dtb am43x-epos-evm-hdmi.dtb \ + am43x-epos-evm.dtb \ + ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'am43x-epos-evm-hdmi.dtb', d)} \ " KERNEL_DEVICETREE += "${@oe.utils.conditional('ENABLE_TI_UIO_DEVICES', '1', 'am437x-idk-pru-excl-uio.dtb', '', d)}" -- cgit v1.2.3-54-g00ecf