mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-16 05:53:00 +02:00
Move all initscripts for the system to src/initscripts/system
Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org>
This commit is contained in:
83
src/initscripts/system/modules
Normal file
83
src/initscripts/system/modules
Normal file
@@ -0,0 +1,83 @@
|
||||
#!/bin/sh
|
||||
########################################################################
|
||||
# Begin $rc_base/init.d/modules
|
||||
#
|
||||
# Description : Module auto-loading script
|
||||
#
|
||||
# Authors : Zack Winkles
|
||||
#
|
||||
# Version : 00.00
|
||||
#
|
||||
# Notes :
|
||||
#
|
||||
########################################################################
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. ${rc_functions}
|
||||
|
||||
# Assure that the kernel has module support.
|
||||
[ -e /proc/ksyms -o -e /proc/modules ] || exit 0
|
||||
|
||||
case "${1}" in
|
||||
start)
|
||||
|
||||
# If proc is mounted, find the current kernel
|
||||
# message level
|
||||
if [ -f /proc/sys/kernel/printk ]; then
|
||||
prev_msg=`cat /proc/sys/kernel/printk | \
|
||||
sed 'l 1' | sed -n '2~0p' | \
|
||||
sed 's/\\\//'`
|
||||
else
|
||||
prev_msg="6"
|
||||
fi
|
||||
|
||||
# Now set the message level to 1 so not to make too
|
||||
# much noise when loading modules
|
||||
dmesg -n 1
|
||||
|
||||
# Only try to load modules if the user has actually given us
|
||||
# some modules to load.
|
||||
if egrep -qv '^(#|$)' /etc/sysconfig/modules 2>/dev/null
|
||||
then
|
||||
|
||||
# Read in the configuration file.
|
||||
exec 9>&0 < /etc/sysconfig/modules
|
||||
|
||||
boot_mesg -n "Loading modules:" ${INFO}
|
||||
|
||||
while read module args
|
||||
do
|
||||
# Ignore comments and blank lines.
|
||||
case "${module}" in
|
||||
""|\#*) continue ;;
|
||||
esac
|
||||
|
||||
# Attempt to load the module, making
|
||||
# sure to pass any arguments provided.
|
||||
modprobe ${module} ${args} &>/dev/null
|
||||
|
||||
# Print the module name if successful,
|
||||
# otherwise take note.
|
||||
if [ ${?} -eq 0 ]; then
|
||||
boot_mesg -n " ${module}" ${NORMAL}
|
||||
fi
|
||||
done
|
||||
|
||||
boot_mesg "" ${NORMAL}
|
||||
# Print a message about successfully loaded
|
||||
# modules on the correct line.
|
||||
echo_ok
|
||||
|
||||
exec 0>&9 9>&-
|
||||
|
||||
fi
|
||||
# Set the kernel message level back to it's previous value.
|
||||
dmesg -n "${prev_msg}"
|
||||
;;
|
||||
*)
|
||||
echo "Usage: ${0} {start}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# End $rc_base/init.d/modules
|
||||
Reference in New Issue
Block a user