summaryrefslogtreecommitdiff
path: root/packages/update-modules
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2006-02-05 06:10:45 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-02-05 06:10:45 +0000
commit2e73052fdbcb7b374e823cda25503a7a10dbc69d (patch)
treeda1ca1afc3a3138a34e6ad473908b04b737cda98 /packages/update-modules
parent58d8ffa2cfd134d912985cb9fe41727b74461ab0 (diff)
parentdbb098507e8c959424c32e299d8c91c0ae71332d (diff)
merge of 972552ee20c9c9c79e01afea5f9276b5e4c554bd
and d17c8965045bca1d838e85c0b4579217b647682c
Diffstat (limited to 'packages/update-modules')
-rwxr-xr-xpackages/update-modules/update-modules-1.0/update-modules11
-rw-r--r--packages/update-modules/update-modules_1.0.bb3
2 files changed, 11 insertions, 3 deletions
diff --git a/packages/update-modules/update-modules-1.0/update-modules b/packages/update-modules/update-modules-1.0/update-modules
index 2f817c5ee1..636fe1c0d4 100755
--- a/packages/update-modules/update-modules-1.0/update-modules
+++ b/packages/update-modules/update-modules-1.0/update-modules
@@ -173,15 +173,24 @@ for cfg in /etc/modutils/* $CONF ; do
fi
done
+first_time=0
+if [ ! -f $MODULESFILE ]; then
+ first_time=1
+fi
+
mv "$MODCONFTMPFILE" "$MODCONFFILE"
mv "$MODULESTMPFILE" "$MODULESFILE"
+if [ $first_time -eq 1 ]; then
+ /etc/init.d/modutils.sh || true
+fi
+
# We also call depmod here to stop insmod from complaining that modules.conf
# is more recent then modules.dep
#
if [ -d "`depdir`" -a -f /proc/modules ]
then
- depmod -a || true
+ depmod -A || true
fi
exit 0
diff --git a/packages/update-modules/update-modules_1.0.bb b/packages/update-modules/update-modules_1.0.bb
index 297b1bf7b0..dc4c3c0d92 100644
--- a/packages/update-modules/update-modules_1.0.bb
+++ b/packages/update-modules/update-modules_1.0.bb
@@ -2,7 +2,7 @@ SECTION = "base"
DESCRIPTION = "Script to manage module configuration files"
LICENSE = "GPLv2"
PACKAGE_ARCH = "all"
-PR = "r3"
+PR = "r4"
SRC_URI = "file://update-modules"
@@ -11,7 +11,6 @@ if [ "x$D" != "x" ]; then
exit 1
fi
update-modules
-/etc/init.d/modutils.sh
}
do_install() {