summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2017-01-19 17:45:43 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-20 11:53:51 +0000
commitfc7394fe2d551a4c83e73741f8872ecbd6ab9037 (patch)
tree9edd65bc1fc8aa2e8648a5bc6d3851ac25f034b7 /meta/classes/kernel.bbclass
parent8a17181e24b9512faca028fd9ade8a4923086395 (diff)
downloadpoky-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>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass3
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 @@
1inherit linux-kernel-base kernel-module-split 1inherit linux-kernel-base kernel-module-split
2 2
3PROVIDES += "virtual/kernel" 3PROVIDES += "virtual/kernel"
4DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native depmodwrapper-cross bc-native lzop-native" 4DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native"
5PACKAGE_WRITE_DEPS += "depmodwrapper-cross virtual/update-alternatives-native"
5 6
6S = "${STAGING_KERNEL_DIR}" 7S = "${STAGING_KERNEL_DIR}"
7B = "${WORKDIR}/build" 8B = "${WORKDIR}/build"