2005-04-21 16:53:53 +02:00
|
|
|
# /etc/rc - System startup script run by init before going multiuser.
|
|
|
|
|
2008-12-11 15:50:56 +01:00
|
|
|
exec >/dev/log
|
|
|
|
exec 2>/dev/log
|
|
|
|
exec </dev/null
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
umask 022
|
2013-10-30 18:12:35 +01:00
|
|
|
|
|
|
|
# Same settings as in the default /etc/profile. We do not source this file
|
|
|
|
# as the system administrator may decide to change those values for his users.
|
2005-08-09 18:58:28 +02:00
|
|
|
RC_TZ=/etc/rc.timezone
|
2013-10-30 18:12:35 +01:00
|
|
|
PATH=/usr/local/sbin:/usr/pkg/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/pkg/bin:/usr/bin:/bin
|
|
|
|
|
|
|
|
# Set TERM to minix if not present.
|
|
|
|
TERM="${TERM-minix}"
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
export TERM PATH
|
|
|
|
|
2013-10-30 18:12:35 +01:00
|
|
|
# Local variables
|
2013-03-06 19:27:47 +01:00
|
|
|
ARCH="`sysenv arch`"
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
usage()
|
|
|
|
{
|
2013-09-09 15:20:18 +02:00
|
|
|
echo >&2 "Usage: $0 [-saf] autoboot|start|stop|down"
|
2005-04-21 16:53:53 +02:00
|
|
|
exec intr sh
|
|
|
|
}
|
|
|
|
|
2010-07-05 21:37:08 +02:00
|
|
|
up()
|
2005-08-04 21:23:03 +02:00
|
|
|
{
|
2010-07-05 21:37:08 +02:00
|
|
|
# Function to dynamically start a system service
|
|
|
|
opt=""
|
|
|
|
prefix=$(expr "$1 " : '\(-\)')
|
|
|
|
if [ "$prefix" = "-" ];
|
|
|
|
then
|
|
|
|
opt=$1
|
|
|
|
shift
|
|
|
|
fi
|
2005-08-04 21:23:03 +02:00
|
|
|
service=$1
|
2005-11-28 16:39:01 +01:00
|
|
|
shift
|
2005-08-04 21:23:03 +02:00
|
|
|
|
2010-04-09 23:56:44 +02:00
|
|
|
service $opt up /sbin/$service "$@"
|
2005-08-04 21:23:03 +02:00
|
|
|
}
|
|
|
|
|
2010-07-05 21:37:08 +02:00
|
|
|
edit()
|
|
|
|
{
|
|
|
|
# Function to dynamically edit system service settings
|
|
|
|
opt=""
|
|
|
|
prefix=$(expr "$1 " : '\(-\)')
|
|
|
|
if [ "$prefix" = "-" ];
|
|
|
|
then
|
|
|
|
opt=$1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
service=$1
|
|
|
|
shift
|
|
|
|
|
2013-09-09 15:20:18 +02:00
|
|
|
# Assume binaries are always in /sbin or /usr/sbin
|
|
|
|
binlocation=/usr/sbin/$service
|
|
|
|
if [ ! -x $binlocation ]
|
|
|
|
then binlocation=/sbin/$service
|
|
|
|
fi
|
|
|
|
service $opt edit $binlocation -label $service "$@"
|
2011-11-09 16:34:47 +01:00
|
|
|
}
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
while getopts 'saf' opt
|
|
|
|
do
|
|
|
|
case $opt in
|
|
|
|
s) sflag=t ;; # Single user
|
|
|
|
a) aflag=t ;; # Ask for /usr
|
2011-11-09 16:34:47 +01:00
|
|
|
f) fflag=-f ;; # Force a full file system check
|
2005-04-21 16:53:53 +02:00
|
|
|
*) usage
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift `expr $OPTIND - 1`
|
|
|
|
|
|
|
|
case "$#:$1" in
|
2013-09-09 15:20:18 +02:00
|
|
|
1:start|1:stop|1:down|1:autoboot)
|
2005-04-21 16:53:53 +02:00
|
|
|
action=$1
|
|
|
|
;;
|
|
|
|
*) usage
|
|
|
|
esac
|
|
|
|
|
|
|
|
case $action in
|
2013-09-09 15:20:18 +02:00
|
|
|
autoboot|start)
|
2005-06-17 11:00:31 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# National keyboard?
|
|
|
|
test -f /etc/keymap && loadkeys /etc/keymap
|
|
|
|
|
2010-03-31 17:06:53 +02:00
|
|
|
# options for fsck. default is -r, which prompts the user for repairs.
|
2011-12-22 22:51:26 +01:00
|
|
|
optname=fsckopts
|
|
|
|
fsckopts=-p
|
|
|
|
if sysenv $optname >/dev/null
|
|
|
|
then fsckopts="`sysenv $optname`"
|
2010-03-31 17:06:53 +02:00
|
|
|
fi
|
|
|
|
|
2009-12-23 00:30:50 +01:00
|
|
|
if [ "`sysenv debug_fkeys`" != 0 ]
|
|
|
|
then
|
2010-07-05 21:37:08 +02:00
|
|
|
up -n is -period 5HZ
|
2009-12-23 00:30:50 +01:00
|
|
|
fi
|
2005-08-04 21:23:03 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# Set timezone.
|
2005-08-09 18:58:28 +02:00
|
|
|
export TZ=GMT0
|
|
|
|
if [ -f "$RC_TZ" ]
|
|
|
|
then . "$RC_TZ"
|
|
|
|
fi
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2013-08-02 16:10:30 +02:00
|
|
|
# Start real time clock driver & set system time, otherwise default date.
|
|
|
|
up readclock.drv
|
2013-08-08 02:06:47 +02:00
|
|
|
readclock -q || date 201301010000
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2013-09-09 15:20:18 +02:00
|
|
|
# We are not shutting down.
|
|
|
|
rm -f /etc/nologin
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# Initialize files.
|
2013-09-09 15:20:18 +02:00
|
|
|
>/var/run/utmp # /etc/utmp keeps track of logins
|
|
|
|
>/var/run/utmpx # /etc/utmpx keeps track of logins
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2009-08-18 13:36:01 +02:00
|
|
|
# Use MFS binary only from kernel image?
|
|
|
|
if [ "`sysenv bin_img`" = 1 ]
|
|
|
|
then
|
|
|
|
bin_img="-i "
|
|
|
|
fi
|
|
|
|
|
2005-05-03 10:56:01 +02:00
|
|
|
# Are we booting from CD?
|
|
|
|
bootcd="`/bin/sysenv bootcd`"
|
|
|
|
|
2011-11-09 16:34:47 +01:00
|
|
|
# If booting from CD, mounting is a special case.
|
|
|
|
# We know what to do - only /usr is mounted and it's readonly.
|
2005-05-03 10:56:01 +02:00
|
|
|
if [ "$bootcd" = 1 ]
|
2011-11-09 16:34:47 +01:00
|
|
|
then usrdev="$cddev"p2
|
|
|
|
echo "/usr on cd is $usrdev"
|
|
|
|
mount -r $usrdev /usr
|
|
|
|
else
|
|
|
|
# If we're not booting from CD, fsck + mount using /etc/fstab.
|
2013-10-30 18:12:35 +01:00
|
|
|
fsck -x / $fflag $fsckopts
|
|
|
|
mount -a
|
2005-09-01 18:26:22 +02:00
|
|
|
fi
|
|
|
|
|
2012-09-18 13:17:52 +02:00
|
|
|
# Unmount and free now defunct ramdisk
|
|
|
|
umount /dev/imgrd > /dev/null || echo "Failed to unmount boot ramdisk"
|
|
|
|
ramdisk 0 /dev/imgrd || echo "Failed to free boot ramdisk"
|
|
|
|
|
2010-07-05 21:37:08 +02:00
|
|
|
# Edit settings for boot system services
|
2010-07-13 23:11:44 +02:00
|
|
|
if [ "`sysenv skip_boot_config`" != 1 ]
|
|
|
|
then
|
|
|
|
edit rs
|
|
|
|
edit vm
|
|
|
|
edit pm
|
|
|
|
edit sched
|
|
|
|
edit vfs
|
|
|
|
edit ds
|
|
|
|
edit tty
|
|
|
|
edit memory
|
2013-09-21 17:35:15 +02:00
|
|
|
edit pfs
|
2010-07-13 23:11:44 +02:00
|
|
|
edit init
|
|
|
|
fi
|
2010-07-05 21:37:08 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
if [ "$sflag" ]
|
|
|
|
then
|
2012-04-13 15:52:48 +02:00
|
|
|
echo "Single user. Press ^D to resume multiuser startup."
|
2005-04-21 16:53:53 +02:00
|
|
|
intr sh
|
2012-04-13 15:52:48 +02:00
|
|
|
echo
|
2005-04-21 16:53:53 +02:00
|
|
|
fi
|
|
|
|
|
2012-04-13 15:52:48 +02:00
|
|
|
echo "Multiuser startup in progress ..."
|
|
|
|
|
2005-05-03 10:56:01 +02:00
|
|
|
case "`printroot -r`":$bootcd in
|
|
|
|
/dev/ram:)
|
|
|
|
# Remove boot-only things to make space,
|
|
|
|
# unless booting from CD, in which case we need them.
|
|
|
|
rm -rf /boot
|
2005-08-09 16:41:54 +02:00
|
|
|
# put the compiler on ram
|
|
|
|
cp /usr/lib/em* /usr/lib/cpp* /lib
|
2005-04-21 16:53:53 +02:00
|
|
|
esac
|
|
|
|
|
2013-03-06 19:27:47 +01:00
|
|
|
if [ $ARCH = i386 ]
|
|
|
|
then
|
|
|
|
echo -n "Starting hotplugging infrastructure... "
|
|
|
|
rm -f /var/run/devmand.pid
|
|
|
|
devmand -d /etc/devmand -d /usr/pkg/etc/devmand &
|
|
|
|
echo "done."
|
|
|
|
fi
|
2012-06-04 13:15:23 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
# Things should be alright now.
|
2005-10-20 22:38:58 +02:00
|
|
|
;;
|
|
|
|
down|stop)
|
|
|
|
sync
|
2013-03-06 19:27:47 +01:00
|
|
|
if [ $ARCH = i386 ]
|
2012-06-04 13:15:23 +02:00
|
|
|
then
|
2013-03-06 19:27:47 +01:00
|
|
|
if [ -f /var/run/devmand.pid ]
|
|
|
|
then
|
|
|
|
kill -INT `cat /var/run/devmand.pid`
|
|
|
|
# without this delay the following will
|
|
|
|
# be printed in the console
|
|
|
|
# RS: devman not running?
|
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
# usbd needs to be stopped exactly
|
|
|
|
# at this stage(before stopping devman
|
|
|
|
# and after stopping the services
|
|
|
|
# stated by devmand)
|
|
|
|
if [ -x /usr/pkg/etc/rc.d/usbd ]
|
|
|
|
then
|
|
|
|
/usr/pkg/etc/rc.d/usbd stop
|
|
|
|
fi
|
2012-06-04 13:15:23 +02:00
|
|
|
fi
|
2013-03-06 19:27:47 +01:00
|
|
|
|
2005-10-20 22:38:58 +02:00
|
|
|
# Tell RS server we're going down.
|
|
|
|
service shutdown
|
|
|
|
;;
|
2005-04-21 16:53:53 +02:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Further initialization.
|
|
|
|
test -f /usr/etc/rc && sh /usr/etc/rc $action
|
|
|
|
test -f /usr/local/etc/rc && sh /usr/local/etc/rc $action
|
|
|
|
|
|
|
|
# Any messages?
|
2013-09-09 15:20:18 +02:00
|
|
|
if [ "$action" = start -o "$action" = autoboot ]
|
|
|
|
then if [ -f /etc/issue ]
|
|
|
|
then cat /etc/issue
|
|
|
|
fi
|
|
|
|
fi
|
2005-08-31 18:29:56 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
exit 0
|