kernel.bbclass, module.bbclass: changed depmod -A into depmod -a
authorFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>
Sat, 12 Aug 2006 11:57:41 +0000 (11:57 +0000)
committerFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>
Sat, 12 Aug 2006 11:57:41 +0000 (11:57 +0000)
see http://www.handhelds.org/hypermail/oe/102/10225.html

classes/kernel.bbclass
classes/module.bbclass

index e08b4ec..c81112e 100644 (file)
@@ -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
 }
index 8a13f1f..6089f90 100644 (file)
@@ -38,7 +38,7 @@ pkg_postinst_append () {
        if [ -n "$D" ]; then
                exit 1
        fi
-       depmod -A
+       depmod -a
        update-modules || true
 }