From 62aeca5cda753a56295324e7958db080dc7912bb Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Fri, 25 Jul 2025 16:49:06 -0400 Subject: [PATCH] meta-ti-bsp: move KERNEL_DTBVENDORED settings Move KERNEL_DTBVENDORED settings from the kernel to ti-soc.inc in the config scope. Signed-off-by: Denys Dmytriyenko Signed-off-by: Ryan Eatmon --- meta-ti-bsp/conf/machine/include/ti-soc.inc | 5 +++++ meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meta-ti-bsp/conf/machine/include/ti-soc.inc b/meta-ti-bsp/conf/machine/include/ti-soc.inc index e3a50fdd..27bb38b5 100644 --- a/meta-ti-bsp/conf/machine/include/ti-soc.inc +++ b/meta-ti-bsp/conf/machine/include/ti-soc.inc @@ -11,3 +11,8 @@ UBOOT_RD_ENTRYPOINT = "0x84000000" # TI platforms all use devicetrees with overlays MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "kernel-devicetree" + +# Tell the kernel class to install the DTBs in the same directory structure as +# the kernel +KERNEL_DTBDEST = "${KERNEL_IMAGEDEST}/dtb" +KERNEL_DTBVENDORED = "1" diff --git a/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc b/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc index 40ddc4fd..ef4ba4a1 100644 --- a/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc +++ b/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc @@ -1,8 +1,3 @@ -# Tell the kernel class to install the DTBs in the same directory structure as -# the kernel. -KERNEL_DTBDEST = "${KERNEL_IMAGEDEST}/dtb" -KERNEL_DTBVENDORED = "1" - KERNEL_GIT_URI ?= "git://git.ti.com/git/ti-linux-kernel/ti-linux-kernel.git" KERNEL_GIT_PROTOCOL ?= "https" KERNEL_GIT_BRANCH ?= "branch=${BRANCH}"