aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorPhil Blundell <pb@pbcl.net>2014-01-10 12:57:02 +0000
committerAndreas Oberritter <obi@opendreambox.org>2015-02-23 17:15:20 +0100
commit6c40c26d3a6fbeb9fd724c50d918cf293d64a67d (patch)
tree206a06db54e8eaacbbdbcefa91eea37c212942cc /meta/classes
parent425382df9847a53187968c3a908ab718fa9468e5 (diff)
downloadopenembedded-core-contrib-6c40c26d3a6fbeb9fd724c50d918cf293d64a67d.tar.gz
kernel-module-split: Remove extraneous call to depmod from module postinst
During rootfs construction, image.bbclass will call depmod after all the modules are installed. There's no need to run it from the postinst when operating in offline root mode. Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit e8db81e4655ab7535db04aa3c8d7f9868ced6039) Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/kernel-module-split.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/kernel-module-split.bbclass b/meta/classes/kernel-module-split.bbclass
index 9a4329dcc9..d43f7431cb 100644
--- a/meta/classes/kernel-module-split.bbclass
+++ b/meta/classes/kernel-module-split.bbclass
@@ -2,7 +2,9 @@ pkg_postinst_modules () {
if [ -z "$D" ]; then
depmod -a ${KERNEL_VERSION}
else
- depmodwrapper -a -b $D ${KERNEL_VERSION}
+ # image.bbclass will call depmodwrapper after everything is installed,
+ # no need to do it here as well
+ :
fi
}