summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2018-07-10 07:06:01 +0000
committerDenys Dmytriyenko <denys@ti.com>2018-07-10 05:50:44 +0000
commit195d3f7b93b605eccab685b408f354d35a60884e (patch)
tree24f7140aab9cd0f563a76e6d08dc8090788b4298 /conf
parente4a6988b573fb9282dfc2233e8ead2cf720a35d9 (diff)
downloadmeta-ti-195d3f7b93b605eccab685b408f354d35a60884e.tar.gz
meta-ti: cleanup use of d.getVar()
1. drop use of True as second parameter, which is default, to align with master 2. there were instances of incorrectly passing 'd' as second parameter from previous conversion from bb.data.getVar() usage Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/machine/include/beaglebone.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/beaglebone.inc b/conf/machine/include/beaglebone.inc
index b10146d1..2e14cf1d 100644
--- a/conf/machine/include/beaglebone.inc
+++ b/conf/machine/include/beaglebone.inc
@@ -1,5 +1,5 @@
1python () { 1python () {
2 layers = d.getVar("BBFILE_COLLECTIONS", True) 2 layers = d.getVar("BBFILE_COLLECTIONS")
3 if not layers: 3 if not layers:
4 return 4 return
5 if "yoctobsp" in layers: 5 if "yoctobsp" in layers: