diff options
author | Paul Barker <pbarker@toganlabs.com> | 2017-09-08 09:29:31 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2017-09-24 20:39:35 +0100 |
commit | 8311d16e5999566d01e6931003f858d979a6e46c (patch) | |
tree | af7e4c0bf486bb790e75d9afdd7232a1e2f3221c /classes/linux-raspberrypi-base.bbclass | |
parent | b00d914e78c8f4abfaff29deda5a72689230fa5f (diff) | |
download | meta-raspberrypi-8311d16e5999566d01e6931003f858d979a6e46c.tar.gz |
linux-raspberrypi: Drop unnecessary code
* The kerneltype variable is not used anywhere after being set.
* The manipulation of KERNEL_DEVICETREE is effectively a no-op, we read the
current value in get_dts() and store this back into the same variable.
Signed-off-by: Paul Barker <pbarker@toganlabs.com>
Diffstat (limited to 'classes/linux-raspberrypi-base.bbclass')
-rw-r--r-- | classes/linux-raspberrypi-base.bbclass | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/classes/linux-raspberrypi-base.bbclass b/classes/linux-raspberrypi-base.bbclass index e925d4e..0a21cc9 100644 --- a/classes/linux-raspberrypi-base.bbclass +++ b/classes/linux-raspberrypi-base.bbclass | |||
@@ -1,24 +1,7 @@ | |||
1 | inherit linux-kernel-base | 1 | inherit linux-kernel-base |
2 | 2 | ||
3 | def get_dts(d, ver=None): | ||
4 | import re | ||
5 | |||
6 | staging_dir = d.getVar("STAGING_KERNEL_BUILDDIR") | ||
7 | dts = d.getVar("KERNEL_DEVICETREE") | ||
8 | |||
9 | # d.getVar() might return 'None' as a normal string | ||
10 | # leading to 'is None' check isn't enough. | ||
11 | # TODO: Investigate if this is a bug in bitbake | ||
12 | if ver is None or ver == "None": | ||
13 | ''' if 'ver' isn't set try to grab the kernel version | ||
14 | from the kernel staging ''' | ||
15 | ver = get_kernelversion_file(staging_dir) | ||
16 | |||
17 | return dts | ||
18 | |||
19 | |||
20 | def split_overlays(d, out, ver=None): | 3 | def split_overlays(d, out, ver=None): |
21 | dts = get_dts(d, ver) | 4 | dts = d.getVar("KERNEL_DEVICETREE") |
22 | if out: | 5 | if out: |
23 | overlays = oe.utils.str_filter_out('\S+\-overlay\.dtb$', dts, d) | 6 | overlays = oe.utils.str_filter_out('\S+\-overlay\.dtb$', dts, d) |
24 | overlays = oe.utils.str_filter_out('\S+\.dtbo$', overlays, d) | 7 | overlays = oe.utils.str_filter_out('\S+\.dtbo$', overlays, d) |