Message ID | 20250311161849.31310-1-reatmon@ti.com |
---|---|
State | Accepted |
Delegated to: | Ryan Eatmon |
Headers | show |
Series | [meta-ti,master/scarthgap,1/2] conf: machine: j721e: Fix overlays for DS90UB954 | expand |
diff --git a/meta-ti-bsp/conf/machine/j721e-evm.conf b/meta-ti-bsp/conf/machine/j721e-evm.conf index d216bbe2..b0b2a5b6 100644 --- a/meta-ti-bsp/conf/machine/j721e-evm.conf +++ b/meta-ti-bsp/conf/machine/j721e-evm.conf @@ -19,7 +19,6 @@ KERNEL_DEVICETREE = " \ ti/k3-j721e-evm-quad-port-eth-exp.dtbo \ ti/k3-j721e-sk-csi2-dual-imx219.dtbo \ ti/k3-j721e-sk.dtb \ - ti/k3-j721e-evm-ub954.dtbo \ " UBOOT_MACHINE = "j721e_evm_a72_config"
The previous commit incorrectly added the k3-j721e-evm-ub954.dtbo to the KERNEL_DEVICETREE and it was missed during a quick review. The correct way to add dtbs is to add a prefix string to the KERNEL_DEVICETREE_PREFIX variable so that all files that match the string will be picked up. This allows for multiple kernels to be swapped out that may have different DTBs in their respective trees and not break a build. The upstream testing on the kernel will automatically update the KERNEL_DEVICETREE variable when the final kernel version is available. That way the KERNEL_DEVICETREE always points to what is available in the mainline. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- meta-ti-bsp/conf/machine/j721e-evm.conf | 1 - 1 file changed, 1 deletion(-)