summaryrefslogtreecommitdiff
path: root/import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass')
-rw-r--r--import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass b/import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass
index dc2330af2..e925d4e91 100644
--- a/import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass
+++ b/import-layers/meta-raspberrypi/classes/linux-raspberrypi-base.bbclass
@@ -3,8 +3,8 @@ inherit linux-kernel-base
def get_dts(d, ver=None):
import re
- staging_dir = d.getVar("STAGING_KERNEL_BUILDDIR", True)
- dts = d.getVar("KERNEL_DEVICETREE", True)
+ staging_dir = d.getVar("STAGING_KERNEL_BUILDDIR")
+ dts = d.getVar("KERNEL_DEVICETREE")
# d.getVar() might return 'None' as a normal string
# leading to 'is None' check isn't enough.