diff options
author | Anders Darander <anders@chargestorm.se> | 2011-07-01 15:08:01 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-01 23:33:55 +0100 |
commit | 2cdb49b67027663ba9c53eec8e864e909adef0e6 (patch) | |
tree | 1d374a60a9b73a163bc92563ca88f19e6f4d6805 /meta/recipes-kernel/module-init-tools/files | |
parent | 773fc8fc45224e37d442d927ed28d50680fb954c (diff) | |
download | openembedded-core-2cdb49b67027663ba9c53eec8e864e909adef0e6.tar.gz openembedded-core-2cdb49b67027663ba9c53eec8e864e909adef0e6.tar.bz2 openembedded-core-2cdb49b67027663ba9c53eec8e864e909adef0e6.zip |
modutils-initscripts: move recipe prior to modutils removal
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/module-init-tools/files')
-rw-r--r-- | meta/recipes-kernel/module-init-tools/files/PD.patch | 8 | ||||
-rwxr-xr-x | meta/recipes-kernel/module-init-tools/files/modutils.sh | 36 |
2 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-kernel/module-init-tools/files/PD.patch b/meta/recipes-kernel/module-init-tools/files/PD.patch new file mode 100644 index 0000000000..21ac49cbd8 --- /dev/null +++ b/meta/recipes-kernel/module-init-tools/files/PD.patch @@ -0,0 +1,8 @@ +Upstream-Status: Inappropriate [licensing] + +Index: modutils-initscripts-1.0/LICENSE +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ modutils-initscripts-1.0/LICENSE 2010-12-06 14:26:03.570339002 -0800 +@@ -0,0 +1 @@ ++Public Domain diff --git a/meta/recipes-kernel/module-init-tools/files/modutils.sh b/meta/recipes-kernel/module-init-tools/files/modutils.sh new file mode 100755 index 0000000000..9049bbb8aa --- /dev/null +++ b/meta/recipes-kernel/module-init-tools/files/modutils.sh @@ -0,0 +1,36 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: module-init-tools +# Required-Start: +# Required-Stop: +# Should-Start: checkroot +# Should-stop: +# Default-Start: S +# Default-Stop: +# Short-Description: Process /etc/modules. +# Description: Load the modules listed in /etc/modules. +### END INIT INFO + +LOAD_MODULE=modprobe +[ -f /proc/modules ] || exit 0 +[ -f /etc/modules ] || exit 0 +[ -e /sbin/modprobe ] || LOAD_MODULE=insmod + +if [ ! -f /lib/modules/`uname -r`/modules.dep ]; then + [ "$VERBOSE" != no ] && echo "Calculating module dependencies ..." + depmod -Ae +fi + +[ "$VERBOSE" != no ] && echo -n "Loading modules: " +(cat /etc/modules; echo; ) | +while read module args +do + case "$module" in + \#*|"") continue ;; + esac + [ "$VERBOSE" != no ] && echo -n "$module " + eval "$LOAD_MODULE $module $args >/dev/null 2>&1" +done +[ "$VERBOSE" != no ] && echo + +exit 0 |