summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2013-02-28 15:51:51 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-01 14:44:40 +0000
commit86d6ec51f0e1a4f5335d72928ef14ea1335d49b0 (patch)
tree0da20526e2d0583ddee24cd38d5717d30032530f /meta/classes/kernel.bbclass
parentbe248b0222bda151ae5f94be6bb8a53e192ecded (diff)
downloadpoky-86d6ec51f0e1a4f5335d72928ef14ea1335d49b0.tar.gz
module.bbclass: Create a new depmodwrapper to assist cross-installs
Previously the build path to STAGING_KERNEL_DIR was being embedded into the package post install scripts. We avoid this behavior by generating a special depmodwrapper script. This script contains that hard-coded path, ensuring that re-use of the sstate-cache (and/or packages) will always run through the wrapper generated by the current build with a checksum that includes STAGING_KERNEL_DIR. [ YOCTO #3962 ] (From OE-Core rev: b18c61bae4d7161c087a004bba3c696006f7a2f6) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index e8c585bb94..2bdc2fcdc5 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -1,7 +1,7 @@
1inherit linux-kernel-base module_strip 1inherit linux-kernel-base module_strip
2 2
3PROVIDES += "virtual/kernel" 3PROVIDES += "virtual/kernel"
4DEPENDS += "virtual/${TARGET_PREFIX}gcc kmod-native" 4DEPENDS += "virtual/${TARGET_PREFIX}gcc kmod-native depmodwrapper-cross"
5 5
6# we include gcc above, we dont need virtual/libc 6# we include gcc above, we dont need virtual/libc
7INHIBIT_DEFAULT_DEPS = "1" 7INHIBIT_DEFAULT_DEPS = "1"
@@ -272,7 +272,7 @@ if [ ! -e "$D/lib/modules/${KERNEL_VERSION}" ]; then
272 mkdir -p $D/lib/modules/${KERNEL_VERSION} 272 mkdir -p $D/lib/modules/${KERNEL_VERSION}
273fi 273fi
274if [ -n "$D" ]; then 274if [ -n "$D" ]; then
275 depmod -a -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_VERSION} ${KERNEL_VERSION} 275 depmodwrapper -a -b $D ${KERNEL_VERSION}
276else 276else
277 depmod -a ${KERNEL_VERSION} 277 depmod -a ${KERNEL_VERSION}
278fi 278fi
@@ -282,7 +282,7 @@ pkg_postinst_modules () {
282if [ -z "$D" ]; then 282if [ -z "$D" ]; then
283 depmod -a ${KERNEL_VERSION} 283 depmod -a ${KERNEL_VERSION}
284else 284else
285 depmod -a -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_VERSION} ${KERNEL_VERSION} 285 depmodwrapper -a -b $D ${KERNEL_VERSION}
286fi 286fi
287} 287}
288 288
@@ -290,7 +290,7 @@ pkg_postrm_modules () {
290if [ -z "$D" ]; then 290if [ -z "$D" ]; then
291 depmod -a ${KERNEL_VERSION} 291 depmod -a ${KERNEL_VERSION}
292else 292else
293 depmod -a -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_VERSION} ${KERNEL_VERSION} 293 depmodwrapper -a -b $D ${KERNEL_VERSION}
294fi 294fi
295} 295}
296 296