aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>2006-08-12 11:57:41 +0000
committerFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>2006-08-12 11:57:41 +0000
commit5d41710e9eb7626b917dbbf0c4680bae23979372 (patch)
tree030af7bce7b5b518aa347dfbd68ce2c98277afde
parent8e8afed4ae391f3ff38cb05f4258a4f689b0d584 (diff)
downloadopenembedded-5d41710e9eb7626b917dbbf0c4680bae23979372.tar.gz
kernel.bbclass, module.bbclass: changed depmod -A into depmod -a
see http://www.handhelds.org/hypermail/oe/102/10225.html
-rw-r--r--classes/kernel.bbclass4
-rw-r--r--classes/module.bbclass2
2 files changed, 3 insertions, 3 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
index e08b4ec412..c81112ede7 100644
--- a/classes/kernel.bbclass
+++ b/classes/kernel.bbclass
@@ -214,7 +214,7 @@ fi
if [ -n "$D" ]; then
${HOST_PREFIX}depmod-${KERNEL_MAJOR_VERSION} -A -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_RELEASE} ${KERNEL_VERSION}
else
- depmod -A
+ depmod -a
fi
}
@@ -222,7 +222,7 @@ pkg_postinst_modules () {
if [ -n "$D" ]; then
${HOST_PREFIX}depmod-${KERNEL_MAJOR_VERSION} -A -b $D -F ${STAGING_KERNEL_DIR}/System.map-${KERNEL_RELEASE} ${KERNEL_VERSION}
else
- depmod -A
+ depmod -a
update-modules || true
fi
}
diff --git a/classes/module.bbclass b/classes/module.bbclass
index 8a13f1f858..6089f90462 100644
--- a/classes/module.bbclass
+++ b/classes/module.bbclass
@@ -38,7 +38,7 @@ pkg_postinst_append () {
if [ -n "$D" ]; then
exit 1
fi
- depmod -A
+ depmod -a
update-modules || true
}