diff options
author | Zachary Booth <zachary.booth@garmin.com> | 2023-03-20 11:24:03 +0000 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2023-03-21 13:03:29 -0500 |
commit | 666a488046bcb1dd43ffb2520ccda5f797bef1a8 (patch) | |
tree | ae6df68e56f083c9b6cbe8da9e7125f9ccfad23d | |
parent | 668a702edb321d490d4f238380f18e69ab461804 (diff) | |
download | meta-ti-666a488046bcb1dd43ffb2520ccda5f797bef1a8.tar.gz |
conf: omap-a15: Fix parsing when KERNEL_DEVICETREE is not set
Correctly handle parsing when KERNEL_DEVICETREE is not set.
Signed-off-by: Zachary Booth <zachary.booth@garmin.com>
Signed-off-by: Joshua Watt <Joshua.Watt@garmin.com>
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/conf/machine/include/omap-a15.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-ti-bsp/conf/machine/include/omap-a15.inc b/meta-ti-bsp/conf/machine/include/omap-a15.inc index bc6add02..49db1cb6 100644 --- a/meta-ti-bsp/conf/machine/include/omap-a15.inc +++ b/meta-ti-bsp/conf/machine/include/omap-a15.inc | |||
@@ -23,7 +23,7 @@ UBOOT_ARCH = "arm" | |||
23 | UBOOT_ENTRYPOINT = "0x80008000" | 23 | UBOOT_ENTRYPOINT = "0x80008000" |
24 | UBOOT_LOADADDRESS = "0x80008000" | 24 | UBOOT_LOADADDRESS = "0x80008000" |
25 | 25 | ||
26 | DEVICETREE_FILE = "${@d.getVar('KERNEL_DEVICETREE').replace("ti/","")}" | 26 | DEVICETREE_FILE = "${@(d.getVar('KERNEL_DEVICETREE') or "").replace("ti/","")}" |
27 | 27 | ||
28 | # Generate an extlinux.conf file | 28 | # Generate an extlinux.conf file |
29 | UBOOT_EXTLINUX = "1" | 29 | UBOOT_EXTLINUX = "1" |