summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
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