summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Booth <zachary.booth@garmin.com>2022-11-07 14:18:30 -0600
committerRyan Eatmon <reatmon@ti.com>2022-12-03 07:09:51 -0600
commitbf4076e990494093fda3bddc4706d42f1f7438e3 (patch)
tree8232d81337b4ea0714b7e5cb0ca4362b075d19fa
parent67633d0dbbf0cea877501ded5b7eedb89bdca50d (diff)
downloadmeta-ti-bf4076e990494093fda3bddc4706d42f1f7438e3.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>
-rw-r--r--conf/machine/include/omap-a15.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/omap-a15.inc b/conf/machine/include/omap-a15.inc
index 02225a4e..4f57e6d1 100644
--- a/conf/machine/include/omap-a15.inc
+++ b/conf/machine/include/omap-a15.inc
@@ -19,7 +19,7 @@ UBOOT_ARCH = "arm"
19UBOOT_ENTRYPOINT = "0x80008000" 19UBOOT_ENTRYPOINT = "0x80008000"
20UBOOT_LOADADDRESS = "0x80008000" 20UBOOT_LOADADDRESS = "0x80008000"
21 21
22DEVICETREE_FILE = "${@d.getVar('KERNEL_DEVICETREE').replace("ti/","")}" 22DEVICETREE_FILE = "${@(d.getVar('KERNEL_DEVICETREE') or "").replace("ti/","")}"
23 23
24# Generate an extlinux.conf file 24# Generate an extlinux.conf file
25UBOOT_EXTLINUX = "1" 25UBOOT_EXTLINUX = "1"