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/sdcard_image-rpi.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/sdcard_image-rpi.bbclass')
-rw-r--r-- | classes/sdcard_image-rpi.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sdcard_image-rpi.bbclass b/classes/sdcard_image-rpi.bbclass index 42753d6..8099f77 100644 --- a/classes/sdcard_image-rpi.bbclass +++ b/classes/sdcard_image-rpi.bbclass | |||
@@ -86,7 +86,7 @@ IMAGE_CMD_rpi-sdimg () { | |||
86 | echo "Creating filesystem with Boot partition ${BOOT_SPACE_ALIGNED} KiB and RootFS $ROOTFS_SIZE KiB" | 86 | echo "Creating filesystem with Boot partition ${BOOT_SPACE_ALIGNED} KiB and RootFS $ROOTFS_SIZE KiB" |
87 | 87 | ||
88 | # Check if we are building with device tree support | 88 | # Check if we are building with device tree support |
89 | DTS="${@get_dts(d)}" | 89 | DTS="${KERNEL_DEVICETREE}" |
90 | 90 | ||
91 | # Initialize sdcard image file | 91 | # Initialize sdcard image file |
92 | dd if=/dev/zero of=${SDIMG} bs=1024 count=0 seek=${SDIMG_SIZE} | 92 | dd if=/dev/zero of=${SDIMG} bs=1024 count=0 seek=${SDIMG_SIZE} |