Magellan Linux

Annotation of /trunk/magellan-initscripts/etc/rc.d/init.d/modules

Parent Directory Parent Directory | Revision Log Revision Log


Revision 781 - (hide annotations) (download)
Mon Dec 22 22:01:15 2008 UTC (15 years, 4 months ago) by niro
File size: 1141 byte(s)
-use /etc/conf.d/rc instead of /etc/sysconfig/rc

1 niro 2 #!/bin/bash
2 niro 781 # $Header: /home/cvsd/magellan-cvs/magellan-src/magellan-initscripts/etc/rc.d/init.d/modules,v 1.5 2008-12-22 22:01:15 niro Exp $
3 niro 2
4     #%rlevels: 7:s
5     #%start: 55
6     #%stop:
7    
8     #deps
9     #%needs:
10     #%before:
11     #%after:
12    
13 niro 781 source /etc/conf.d/rc
14     source ${rc_functions}
15 niro 2
16     # stops annoying kernel messages
17     echo "0" > /proc/sys/kernel/printk
18    
19 niro 138 # renew deps only if not booted from livecd
20     # a livecd has always the file .bootdev at root
21 niro 2 if [ ! -e /.bootdev ]
22     then
23 niro 138 echo -e ${COLOREDSTAR}"Calculating modules dependencies ..."
24 niro 2 modules-update
25     evaluate_retval
26     fi
27    
28 niro 138 # get modules.autoload file matching to kernel
29 niro 2 MODULESFILE=/etc/modules.autoload.d/kernel-$(kernel_major_version)
30 niro 690 [[ ! -f ${MODULESFILE} ]] && MODULESFILE=/etc/modules.autoload
31 niro 2
32     (cat ${MODULESFILE}; echo) | # make sure there is a LF at the end
33     while read module args
34     do
35     case "${module}" in
36     \#*|"") continue ;;
37     esac
38     echo -e ${COLOREDSTAR}"Loading module ${COLBLUE}${module}${COLDEFAULT} ..."
39     modprobe ${module} ${args} &>/dev/null
40     evaluate_retval
41     done
42    
43     # sets default level for kernel messages
44     echo "3" > /proc/sys/kernel/printk
45    
46     update_svcstatus $1
47     splash svc_started "$(basename $0)" 0

Properties

Name Value
svn:executable *