diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-02-28 15:51:51 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-01 14:44:40 +0000 |
commit | 86d6ec51f0e1a4f5335d72928ef14ea1335d49b0 (patch) | |
tree | 0da20526e2d0583ddee24cd38d5717d30032530f /meta/classes/kernel.bbclass | |
parent | be248b0222bda151ae5f94be6bb8a53e192ecded (diff) | |
download | poky-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.bbclass | 8 |
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 @@ | |||
1 | inherit linux-kernel-base module_strip | 1 | inherit linux-kernel-base module_strip |
2 | 2 | ||
3 | PROVIDES += "virtual/kernel" | 3 | PROVIDES += "virtual/kernel" |
4 | DEPENDS += "virtual/${TARGET_PREFIX}gcc kmod-native" | 4 | DEPENDS += "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 |
7 | INHIBIT_DEFAULT_DEPS = "1" | 7 | INHIBIT_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} |
273 | fi | 273 | fi |
274 | if [ -n "$D" ]; then | 274 | if [ -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} |
276 | else | 276 | else |
277 | depmod -a ${KERNEL_VERSION} | 277 | depmod -a ${KERNEL_VERSION} |
278 | fi | 278 | fi |
@@ -282,7 +282,7 @@ pkg_postinst_modules () { | |||
282 | if [ -z "$D" ]; then | 282 | if [ -z "$D" ]; then |
283 | depmod -a ${KERNEL_VERSION} | 283 | depmod -a ${KERNEL_VERSION} |
284 | else | 284 | else |
285 | depmod -a -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_VERSION} ${KERNEL_VERSION} | 285 | depmodwrapper -a -b $D ${KERNEL_VERSION} |
286 | fi | 286 | fi |
287 | } | 287 | } |
288 | 288 | ||
@@ -290,7 +290,7 @@ pkg_postrm_modules () { | |||
290 | if [ -z "$D" ]; then | 290 | if [ -z "$D" ]; then |
291 | depmod -a ${KERNEL_VERSION} | 291 | depmod -a ${KERNEL_VERSION} |
292 | else | 292 | else |
293 | depmod -a -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_VERSION} ${KERNEL_VERSION} | 293 | depmodwrapper -a -b $D ${KERNEL_VERSION} |
294 | fi | 294 | fi |
295 | } | 295 | } |
296 | 296 | ||