diff options
author | Frans Meulenbroeks <fransmeulenbroeks@yahoo.com> | 2006-08-12 11:57:41 +0000 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@yahoo.com> | 2006-08-12 11:57:41 +0000 |
commit | 5d41710e9eb7626b917dbbf0c4680bae23979372 (patch) | |
tree | 030af7bce7b5b518aa347dfbd68ce2c98277afde /classes/kernel.bbclass | |
parent | 8e8afed4ae391f3ff38cb05f4258a4f689b0d584 (diff) |
kernel.bbclass, module.bbclass: changed depmod -A into depmod -a
see http://www.handhelds.org/hypermail/oe/102/10225.html
Diffstat (limited to 'classes/kernel.bbclass')
-rw-r--r-- | classes/kernel.bbclass | 4 |
1 files changed, 2 insertions, 2 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 } |