diff options
author | Drew Fustini <dfustini@baylibre.com> | 2022-07-03 20:06:07 -0700 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2022-07-12 11:42:17 -0500 |
commit | 460c3f0fbdfaceeba5181f362bd8ed8a9dde9fc7 (patch) | |
tree | ca7a0d0b563c965a99b8ee94d63d33503a51a701 /conf/machine | |
parent | c83998b42d7ed3c8c24479e7177b5619f1b5f4e1 (diff) | |
download | meta-ti-460c3f0fbdfaceeba5181f362bd8ed8a9dde9fc7.tar.gz |
conf: am57xx-evm: avoid missing dtb files when ARAGO_BRAND=mainline
For ARAGO_BRAND=mainline with the am57xx-evm MACHINE, 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/machine')
-rw-r--r-- | conf/machine/am57xx-evm.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/machine/am57xx-evm.conf b/conf/machine/am57xx-evm.conf index afcfbb43..2fde75fe 100644 --- a/conf/machine/am57xx-evm.conf +++ b/conf/machine/am57xx-evm.conf | |||
@@ -13,9 +13,9 @@ KERNEL_DEVICETREE = " \ | |||
13 | am57xx-beagle-x15-revb1.dtb \ | 13 | am57xx-beagle-x15-revb1.dtb \ |
14 | am57xx-beagle-x15-revc.dtb \ | 14 | am57xx-beagle-x15-revc.dtb \ |
15 | am5729-beagleboneai.dtb \ | 15 | am5729-beagleboneai.dtb \ |
16 | am57xx-evm.dtb \ | 16 | ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'am57xx-evm.dtb', d)} \ |
17 | ti/am57xx-evm-common.dtbo \ | 17 | ti/am57xx-evm-common.dtbo \ |
18 | am57xx-evm-reva3.dtb \ | 18 | ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'am57xx-evm-reva3.dtb', d)} \ |
19 | ti/am57xx-evm-reva3.dtbo \ | 19 | ti/am57xx-evm-reva3.dtbo \ |
20 | am571x-idk.dtb \ | 20 | am571x-idk.dtb \ |
21 | ti/am571x-idk-touchscreen.dtbo \ | 21 | ti/am571x-idk-touchscreen.dtbo \ |
@@ -25,7 +25,7 @@ KERNEL_DEVICETREE = " \ | |||
25 | ti/am572x-idk-touchscreen.dtbo \ | 25 | ti/am572x-idk-touchscreen.dtbo \ |
26 | ti/lcd-osd101t2587.dtbo \ | 26 | ti/lcd-osd101t2587.dtbo \ |
27 | ti/lcd-osd101t2045.dtbo \ | 27 | ti/lcd-osd101t2045.dtbo \ |
28 | ti/ov10635.dtbo \ | 28 | ${@oe.utils.conditional('ARAGO_BRAND', 'mainline', '', 'ti/ov10635.dtbo', d)} \ |
29 | " | 29 | " |
30 | 30 | ||
31 | KERNEL_DEVICETREE += "${@oe.utils.conditional('ENABLE_TI_UIO_DEVICES', '1', 'am574x-idk-pru-excl-uio.dtb am572x-idk-pru-excl-uio.dtb am571x-idk-pru-excl-uio.dtb', '', d)}" | 31 | KERNEL_DEVICETREE += "${@oe.utils.conditional('ENABLE_TI_UIO_DEVICES', '1', 'am574x-idk-pru-excl-uio.dtb am572x-idk-pru-excl-uio.dtb am571x-idk-pru-excl-uio.dtb', '', d)}" |