diff options
author | Timon Ulrich <t.ulrich@anapur.de> | 2020-07-03 14:39:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-07-05 15:04:40 +0100 |
commit | cd96439c580a64a218f219e7aeeb67e0bbd68d5b (patch) | |
tree | 3ee76ee1ef655c808d8dace3281c6931c26bc7e2 /meta/classes/kernel.bbclass | |
parent | 2ebb7ac4bb7b2d883256f51288fa0213ae5f3c53 (diff) | |
download | poky-cd96439c580a64a218f219e7aeeb67e0bbd68d5b.tar.gz |
kernel.bbclass: add lz4 dependency and fix the call to lz4
If the initramfs image is type lz4, then a native lz4 is needed.
Additionally an output filename needs to be specified when calling lz4,
otherwise STDOUT will be used implicitly.
(From OE-Core rev: c83a7aec59defbbc049d44ba34a7a409ada4fa19)
Signed-off-by: Timon Ulrich <t.ulrich@anapur.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r-- | meta/classes/kernel.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 301e3b86b2..c9044befbe 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -5,6 +5,7 @@ KERNEL_DEPLOYSUBDIR ??= "${@ "" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") | |||
5 | 5 | ||
6 | PROVIDES += "${@ "virtual/kernel" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else "" }" | 6 | PROVIDES += "${@ "virtual/kernel" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else "" }" |
7 | DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native bison-native" | 7 | DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native bison-native" |
8 | DEPENDS += "${@bb.utils.contains("INITRAMFS_FSTYPES", "cpio.lz4", "lz4-native", "", d)}" | ||
8 | PACKAGE_WRITE_DEPS += "depmodwrapper-cross" | 9 | PACKAGE_WRITE_DEPS += "depmodwrapper-cross" |
9 | 10 | ||
10 | do_deploy[depends] += "depmodwrapper-cross:do_populate_sysroot" | 11 | do_deploy[depends] += "depmodwrapper-cross:do_populate_sysroot" |
@@ -210,7 +211,7 @@ copy_initramfs() { | |||
210 | ;; | 211 | ;; |
211 | *lz4) | 212 | *lz4) |
212 | echo "lz4 decompressing image" | 213 | echo "lz4 decompressing image" |
213 | lz4 -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img | 214 | lz4 -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img ${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio |
214 | break | 215 | break |
215 | ;; | 216 | ;; |
216 | *lzo) | 217 | *lzo) |