summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/conf/machine/include
diff options
context:
space:
mode:
authorZachary Booth <zachary.booth@garmin.com>2023-03-20 11:24:03 +0000
committerRyan Eatmon <reatmon@ti.com>2023-03-21 13:03:29 -0500
commit666a488046bcb1dd43ffb2520ccda5f797bef1a8 (patch)
treeae6df68e56f083c9b6cbe8da9e7125f9ccfad23d /meta-ti-bsp/conf/machine/include
parent668a702edb321d490d4f238380f18e69ab461804 (diff)
downloadmeta-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>
Diffstat (limited to 'meta-ti-bsp/conf/machine/include')
-rw-r--r--meta-ti-bsp/conf/machine/include/omap-a15.inc2
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"
23UBOOT_ENTRYPOINT = "0x80008000" 23UBOOT_ENTRYPOINT = "0x80008000"
24UBOOT_LOADADDRESS = "0x80008000" 24UBOOT_LOADADDRESS = "0x80008000"
25 25
26DEVICETREE_FILE = "${@d.getVar('KERNEL_DEVICETREE').replace("ti/","")}" 26DEVICETREE_FILE = "${@(d.getVar('KERNEL_DEVICETREE') or "").replace("ti/","")}"
27 27
28# Generate an extlinux.conf file 28# Generate an extlinux.conf file
29UBOOT_EXTLINUX = "1" 29UBOOT_EXTLINUX = "1"