summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Bjorklund <nora.bjorklund@enea.com>2016-03-01 10:39:56 +0100
committerStefan Sicleru <stefan.sicleru@enea.com>2016-03-01 10:41:46 +0100
commit399ca5f775a0d2147e4734b7c77c88cc8338d463 (patch)
tree5493500fdb5e23ec74a6d7b76581204679360012
parenta22148b08fb4bf8b1c5c267641e384bc19252f8e (diff)
downloadmeta-enea-bsp-common-399ca5f775a0d2147e4734b7c77c88cc8338d463.tar.gz
linux-common: update d.getVar syntax
Update to include an expand parameter for d.getVar to comply with bitbake master. Signed-off-by: Nora Björklund <nora.bjorklund@enea.com>
-rw-r--r--recipes-kernel/linux/enea-common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/linux/enea-common.inc b/recipes-kernel/linux/enea-common.inc
index 192100c..c928f46 100644
--- a/recipes-kernel/linux/enea-common.inc
+++ b/recipes-kernel/linux/enea-common.inc
@@ -1,7 +1,7 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/files:" 1FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
2 2
3def format_file_uri(d): 3def format_file_uri(d):
4 substrlist = d.getVar("ENEA_KERNEL_FRAGMENTS").split() 4 substrlist = d.getVar("ENEA_KERNEL_FRAGMENTS", False).split()
5 ostr = '' 5 ostr = ''
6 for substr in substrlist: 6 for substr in substrlist:
7 ostr = ostr + " file://" + substr 7 ostr = ostr + " file://" + substr