summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/conf/machine/beagle-x15.conf
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2023-03-17 10:20:53 -0500
committerRyan Eatmon <reatmon@ti.com>2023-03-31 09:16:08 -0500
commitaacaba30db61d9199a23513ef6838922d73dcad0 (patch)
treebfd29c6b75cf1f9ef867340bee5a27464105ce12 /meta-ti-bsp/conf/machine/beagle-x15.conf
parent183e6abac6611fea0f52d7ac7303131536516a80 (diff)
downloadmeta-ti-aacaba30db61d9199a23513ef6838922d73dcad0.tar.gz
linux-ti-*: Add filtering for which dtb/dtbo to include
We often carry more dtbs/dtbos in our kernel than we have upstreamed. The inclusion of all of the dtb/dtbo in the KERNEL_DEVICETREE has become problematic as we start testing the linux-next and 6.1 as part of our LTS migration. To address this issue we are adding in two step method for managing the KERNEL_DEVICETREE. Going forward we will only accept dtb/dtbo in KERNEL_DEVICETREE if it is available in upstream. This way we ensure that the variable is more accurate for whichever kernel you might be looking at. We have also added a new variable KERNEL_DEVICETREE_PREFIX which our kernel recipes will use to auto set KERNEL_DEVICETREE based on what files are in the kernel and not a fixed list in the conf files. Signed-off-by: Ryan Eatmon <reatmon@ti.com> Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/conf/machine/beagle-x15.conf')
-rw-r--r--meta-ti-bsp/conf/machine/beagle-x15.conf8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta-ti-bsp/conf/machine/beagle-x15.conf b/meta-ti-bsp/conf/machine/beagle-x15.conf
index b4279ae4..8efd6e60 100644
--- a/meta-ti-bsp/conf/machine/beagle-x15.conf
+++ b/meta-ti-bsp/conf/machine/beagle-x15.conf
@@ -4,7 +4,13 @@
4 4
5require conf/machine/include/am57xx.inc 5require conf/machine/include/am57xx.inc
6 6
7KERNEL_DEVICETREE = "am57xx-beagle-x15.dtb am57xx-beagle-x15-revb1.dtb am57xx-beagle-x15-revc.dtb" 7KERNEL_DEVICETREE_PREFIX = "am57xx-beagle-x15"
8
9KERNEL_DEVICETREE = " \
10 am57xx-beagle-x15.dtb \
11 am57xx-beagle-x15-revb1.dtb \
12 am57xx-beagle-x15-revc.dtb \
13"
8 14
9MACHINE_GUI_CLASS = "bigscreen" 15MACHINE_GUI_CLASS = "bigscreen"
10 16