summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2025-07-01 21:46:11 -0400
committerRyan Eatmon <reatmon@ti.com>2025-07-23 08:48:29 -0500
commit8cd5589bbab06914024ba43f06824ddf33dd73aa (patch)
tree1c27fa681ae90a12750525219952d75d6a9547fb
parent6bb039c8dec3e21dc143e171ac2b0da2c2059561 (diff)
downloadmeta-ti-8cd5589bbab06914024ba43f06824ddf33dd73aa.tar.gz
beagle-bsp: unset KERNEL_DEVICETREE_PREFIX
Beagle machines define both static KERNEL_DEVICETREE list and dynamic KERNEL_DEVICETREE_PREFIX matching. But BB.org kernel recipes only use the static list, while TI kernel recipes use dynamic prefix matching by default. Since devicetree lists now need to be used outside of the kernel build, specifically for the new FIT processing wrapper, explicitly unset KERNEL_DEVICETREE_PREFIX to disable dynamic devicetree prefix matching, when BB.org BSPs are selected. This way both kernel build and FIT image wrapper will have the same list of DTBs to handle, based on the BSP selection. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-beagle/conf/machine/include/beagle-bsp.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-beagle/conf/machine/include/beagle-bsp.inc b/meta-beagle/conf/machine/include/beagle-bsp.inc
index 3f9828f3..d180c297 100644
--- a/meta-beagle/conf/machine/include/beagle-bsp.inc
+++ b/meta-beagle/conf/machine/include/beagle-bsp.inc
@@ -14,6 +14,7 @@ BSP_KERNEL_PROVIDER:bsp-bb_org-6_12 = "linux-bb.org"
14BSP_KERNEL_VERSION:bsp-bb_org-6_12 = "6.12.%" 14BSP_KERNEL_VERSION:bsp-bb_org-6_12 = "6.12.%"
15BSP_BOOTLOADER_PROVIDER:bsp-bb_org-6_12 = "u-boot-bb.org" 15BSP_BOOTLOADER_PROVIDER:bsp-bb_org-6_12 = "u-boot-bb.org"
16BSP_BOOTLOADER_VERSION:bsp-bb_org-6_12 = "2025.%" 16BSP_BOOTLOADER_VERSION:bsp-bb_org-6_12 = "2025.%"
17KERNEL_DEVICETREE_PREFIX:bsp-bb_org-6_12 = ""
17 18
18BSP_SGX_DRIVER_PROVIDER:bsp-bb_org-6_12 = "ti-sgx-ddk-km" 19BSP_SGX_DRIVER_PROVIDER:bsp-bb_org-6_12 = "ti-sgx-ddk-km"
19BSP_SGX_DRIVER_VERSION:bsp-bb_org-6_12 = "1.17%" 20BSP_SGX_DRIVER_VERSION:bsp-bb_org-6_12 = "1.17%"
@@ -36,6 +37,7 @@ BSP_KERNEL_PROVIDER:bsp-bb_org-6_6 = "linux-bb.org"
36BSP_KERNEL_VERSION:bsp-bb_org-6_6 = "6.6.%" 37BSP_KERNEL_VERSION:bsp-bb_org-6_6 = "6.6.%"
37BSP_BOOTLOADER_PROVIDER:bsp-bb_org-6_6 = "u-boot-bb.org" 38BSP_BOOTLOADER_PROVIDER:bsp-bb_org-6_6 = "u-boot-bb.org"
38BSP_BOOTLOADER_VERSION:bsp-bb_org-6_6 = "2024.%" 39BSP_BOOTLOADER_VERSION:bsp-bb_org-6_6 = "2024.%"
40KERNEL_DEVICETREE_PREFIX:bsp-bb_org-6_6 = ""
39 41
40BSP_SGX_DRIVER_PROVIDER:bsp-bb_org-6_6 = "ti-sgx-ddk-km" 42BSP_SGX_DRIVER_PROVIDER:bsp-bb_org-6_6 = "ti-sgx-ddk-km"
41BSP_SGX_DRIVER_VERSION:bsp-bb_org-6_6 = "1.17%" 43BSP_SGX_DRIVER_VERSION:bsp-bb_org-6_6 = "1.17%"