Beautify boot process: Remove modprobe messages
authorMatthias Hentges <oe@hentges.net>
Thu, 7 Apr 2005 04:06:15 +0000 (04:06 +0000)
committerMatthias Hentges <oe@hentges.net>
Thu, 7 Apr 2005 04:06:15 +0000 (04:06 +0000)
BKrev: 4254b1b72LbzLsc7OEQz2zWeeePqcQ

packages/modutils/files/modutils.sh
packages/modutils/modutils-initscripts.bb

index e69de29..00f989f 100644 (file)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+[ -f /proc/modules ] || exit 0
+[ -e /sbin/depmod ] || exit 0
+[ -f /etc/modules ] || exit 0
+
+[ "$VERBOSE" != no ] && echo "Calculating module dependencies ..."
+depmod -Ae
+
+[ "$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 "
+       modprobe $module $args >/dev/null 2>&1
+done
+[ "$VERBOSE" != no ] && echo
+
+exit 0
index 1976ebc..bf51ca8 100644 (file)
@@ -2,7 +2,7 @@ SECTION = "base"
 DESCRIPTION = "modutils configuration files"
 LICENSE = "PD"
 SRC_URI = "file://modutils.sh"
-PR = "r1"
+PR = "r2"
 
 INITSCRIPT_NAME = "modutils.sh"
 INITSCRIPT_PARAMS = "start 20 S ."