
Added variable default_device_tree that grabs from defconfig. Prevents needing to change this variable in two locations if using a separate device tree. In the future, it would be a good idea to remove this logic completely, but this will help reduce complications.
Signed-off-by: Jason Kacines j-kacines@ti.com --- board/ti/am62x/am62x.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/ti/am62x/am62x.env b/board/ti/am62x/am62x.env index bb37d21de6..ee3d5a6b5f 100644 --- a/board/ti/am62x/am62x.env +++ b/board/ti/am62x/am62x.env @@ -1,7 +1,7 @@ #include <environment/ti/ti_armv7_common.env> #include <environment/ti/mmc.env>
-default_device_tree=ti/k3-am625-sk.dtb +default_device_tree=CONFIG_DEFAULT_DEVICE_TREE.dtb findfdt= setenv name_fdt ${default_device_tree}; setenv fdtfile ${name_fdt}