diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2017-01-19 17:45:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-20 11:53:51 +0000 |
commit | fc7394fe2d551a4c83e73741f8872ecbd6ab9037 (patch) | |
tree | 9edd65bc1fc8aa2e8648a5bc6d3851ac25f034b7 | |
parent | 8a17181e24b9512faca028fd9ade8a4923086395 (diff) | |
download | poky-fc7394fe2d551a4c83e73741f8872ecbd6ab9037.tar.gz |
kernel.bbclass: Add PACKAGE_WRITE_DEPS for postinst
The depmodwrapper dependency is not actually used by the class but
anyone using pkg_postinst_kernel-base() will need it.
(From OE-Core rev: e3f5290d8deba9b7cead73b52ac45a37228fece9)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 3630042dbd..f462b2ff41 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -1,7 +1,8 @@ | |||
1 | inherit linux-kernel-base kernel-module-split | 1 | inherit linux-kernel-base kernel-module-split |
2 | 2 | ||
3 | PROVIDES += "virtual/kernel" | 3 | PROVIDES += "virtual/kernel" |
4 | DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native depmodwrapper-cross bc-native lzop-native" | 4 | DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native" |
5 | PACKAGE_WRITE_DEPS += "depmodwrapper-cross virtual/update-alternatives-native" | ||
5 | 6 | ||
6 | S = "${STAGING_KERNEL_DIR}" | 7 | S = "${STAGING_KERNEL_DIR}" |
7 | B = "${WORKDIR}/build" | 8 | B = "${WORKDIR}/build" |