Merge packages changes from OE into poky.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@386 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2006-05-09 18:38:19 +00:00
parent 3baacb49c1
commit b4cb437c65
135 changed files with 6375 additions and 14447 deletions

View File

@@ -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

View File

@@ -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() {