kernel: scheduling fix for ARM
[minix.git] / etc / rc
blobe78209f7685ec54aed6acb2e54257e8e141619b9
1 # /etc/rc - System startup script run by init before going multiuser.
3 exec >/dev/log
4 exec 2>/dev/log
5 exec </dev/null
7 umask 022
8 FSTAB=/etc/fstab
9 TERM="${TERM-minix}"
10 PATH=/usr/local/bin:/bin:/usr/bin:/usr/sbin:/usr/pkg/bin:/usr/pkg/sbin:/sbin
11 RC_TZ=/etc/rc.timezone
12 export TERM PATH
14 usage()
16     echo >&2 "Usage: $0 [-saf] start|stop|down"
17     exec intr sh
20 up()
22     # Function to dynamically start a system service
23     opt=""
24     prefix=$(expr "$1 " : '\(-\)')
25     if [ "$prefix" = "-" ];
26     then
27          opt=$1
28          shift
29     fi
30     service=$1
31     shift
33     service $opt up /sbin/$service "$@"
36 edit()
38     # Function to dynamically edit system service settings
39     opt=""
40     prefix=$(expr "$1 " : '\(-\)')
41     if [ "$prefix" = "-" ];
42     then
43          opt=$1
44          shift
45     fi
46     service=$1
47     shift
49     # Assume binaries are always in /usr/sbin
50     service $opt edit /usr/sbin/$service -label $service "$@" 
53 # This function parses the deprecated minix shellscript-style 
54 # /etc/fstab, and fscks and mounts its filesystems.
55 mountfstab_poorman()
57     echo "WARNING: old fstab format, please upgrade!"
59     # /etc/fstab lists the root, home, and usr devices.
60     . $FSTAB
62     intr fsck.mfs $fsckopts $usr
63     if [ ! -z "$home" ]
64     then intr fsck.mfs $fsckopts $home
65     fi
67     # mount /usr
68     mount $bin_img $usr /usr
70     if [ ! -z "$home" ]
71     then mount $bin_img $home /home || echo "WARNING: couldn't mount $home on /home"
72     fi
75 while getopts 'saf' opt
77     case $opt in
78     s)  sflag=t ;;      # Single user
79     a)  aflag=t ;;      # Ask for /usr
80     f)  fflag=-f ;;     # Force a full file system check
81     *)  usage
82     esac
83 done
84 shift `expr $OPTIND - 1`
86 case "$#:$1" in
87 1:start|1:stop|1:down)
88     action=$1
89     ;;
90 *)  usage
91 esac
93 case $action in
94 start)
96     # National keyboard?
97     test -f /etc/keymap && loadkeys /etc/keymap
99     # options for fsck. default is -r, which prompts the user for repairs.
100     optname=fsckopts
101     fsckopts=-p
102     if sysenv $optname >/dev/null
103     then       fsckopts="`sysenv $optname`"
104     fi
106     if [ "`sysenv debug_fkeys`" != 0 ]
107     then
108         up -n is -period 5HZ
109     fi
111     # Set timezone.
112     export TZ=GMT0
113     if [ -f "$RC_TZ" ]
114     then . "$RC_TZ"
115     fi
117     # Try to read the hardware real-time clock, otherwise do it manually.
118     readclock || intr date -q
120     # Initialize files.
121     >/etc/utmp                          # /etc/utmp keeps track of logins
123     # Use MFS binary only from kernel image?
124     if [ "`sysenv bin_img`" = 1 ]
125     then
126         bin_img="-i "
127     fi
129     # Are we booting from CD?
130     bootcd="`/bin/sysenv bootcd`"
132     # If booting from CD, mounting is a special case.
133     # We know what to do - only /usr is mounted and it's readonly.
134     if [ "$bootcd" = 1 ]
135     then        usrdev="$cddev"p2
136                 echo "/usr on cd is $usrdev"
137                 mount -r $usrdev /usr
138     else        
139     # If we're not booting from CD, fsck + mount using /etc/fstab.
140                 read <$FSTAB fstabline
141                 if [ "$fstabline" = "# Poor man's File System Table." ]
142                 then    mountfstab_poorman      # Old minix /etc/fstab
143                 else    fsck -x / $fflag $fsckopts
144                         mount -a
145                 fi
146     fi
148     # Unmount and free now defunct ramdisk
149     umount /dev/imgrd > /dev/null || echo "Failed to unmount boot ramdisk"
150     ramdisk 0 /dev/imgrd || echo "Failed to free boot ramdisk"
152     # Edit settings for boot system services
153     if [ "`sysenv skip_boot_config`" != 1 ]
154     then
155         edit rs
156         edit vm
157         edit pm
158         edit sched
159         edit vfs
160         edit ds
161         edit tty
162         edit memory
163         edit -p log
164         edit -c pfs
165         edit init
166     fi
168     # This file is necessary for above 'shutdown -C' check.
169     # (Silence stderr in case of running from cd.)
170     touch /usr/adm/wtmp /etc/wtmp 2>/dev/null
172     if [ "$sflag" ]
173     then
174         echo "Single user. Press ^D to resume multiuser startup."
175         intr sh
176         echo
177     fi
179     echo "Multiuser startup in progress ..."
181     case "`printroot -r`":$bootcd in
182     /dev/ram:)
183         # Remove boot-only things to make space,
184         # unless booting from CD, in which case we need them.
185         rm -rf /boot
186         # put the compiler on ram
187         cp /usr/lib/em* /usr/lib/cpp* /lib
188     esac
190     echo -n "Starting hotplugging infrastructure... "
191     rm -f /var/run/devmand.pid
192     devmand -d /etc/devmand -d /usr/pkg/etc/devmand &
193     echo "done."
195     # Things should be alright now.
196     ;;
197 down|stop)
198     sync
199     if [ -f /var/run/devmand.pid ]
200     then
201         kill -INT `cat /var/run/devmand.pid`
202         # without this delay the following will 
203         # be printed in the console
204         # RS: devman not running?
205         sleep 1
206     fi
207     #
208     # usbd needs to be stopped exactly 
209     # at this stage(before stopping devman
210     # and after stopping the services
211     # stated by devmand)
212     if [ -x /usr/pkg/etc/rc.d/usbd ]
213     then 
214         /usr/pkg/etc/rc.d/usbd stop
215     fi
216     # Tell RS server we're going down.
217     service shutdown
218     ;;
219 esac
221 # Further initialization.
222 test -f /usr/etc/rc && sh /usr/etc/rc $action
223 test -f /usr/local/etc/rc && sh /usr/local/etc/rc $action
225 # Any messages?
226 test "$action" = start -a -f /etc/issue && cat /etc/issue
228 exit 0