2011-03-30 14:14:36 +00:00
|
|
|
#!/bin/rc
|
2014-06-12 19:56:54 +00:00
|
|
|
# this file is run if service=terminal
|
2011-03-30 14:14:36 +00:00
|
|
|
TIMESYNCARGS=(-rLa1000000)
|
|
|
|
|
2011-05-10 09:14:30 +00:00
|
|
|
# bind all likely devices
|
2011-05-16 22:12:44 +00:00
|
|
|
for(i in S f k t m i v L P u U A '$' Σ κ)
|
2011-05-10 09:14:30 +00:00
|
|
|
bind -a '#'^$i /dev >/dev/null >[2=1]
|
2011-04-21 22:22:25 +00:00
|
|
|
rm -f /env/i
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2011-06-06 01:31:58 +00:00
|
|
|
mount -qb /srv/cons /dev
|
2011-08-01 00:55:39 +00:00
|
|
|
|
2016-02-14 00:42:32 +00:00
|
|
|
# mount points (if not done by bootrc already)
|
|
|
|
>[2]/dev/null {
|
|
|
|
mntgen -s slashn /n && chmod 666 /srv/slashn
|
2011-12-02 01:29:41 +00:00
|
|
|
mntgen -s slashmnt /mnt && chmod 666 /srv/slashmnt
|
2016-02-14 00:42:32 +00:00
|
|
|
mntgen -s mntexport /mnt/exportfs && chmod 666 /srv/mntexport}
|
2011-12-02 01:29:41 +00:00
|
|
|
|
|
|
|
# move factotum from /mnt to /mnt/factotum
|
|
|
|
mount /srv/factotum /mnt/temp
|
|
|
|
unmount /srv/factotum /mnt
|
|
|
|
bind /mnt/temp/factotum /mnt/factotum
|
|
|
|
unmount /mnt/temp
|
|
|
|
|
2011-08-01 00:55:39 +00:00
|
|
|
# usb listener
|
|
|
|
nusbrc
|
2011-05-10 09:14:30 +00:00
|
|
|
|
2011-03-30 14:14:36 +00:00
|
|
|
# set up any partitions
|
|
|
|
diskparts
|
|
|
|
|
|
|
|
# start up local swapping
|
|
|
|
disk=`{ls /dev/sd*/swap >[2]/dev/null}
|
|
|
|
if (! ~ $#disk 0)
|
|
|
|
swap $disk(1) >/dev/null >[2=1]
|
2011-04-21 22:22:25 +00:00
|
|
|
rm -f /env/disk
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2013-02-27 16:59:57 +00:00
|
|
|
# we do this before we have a name. we may need to do network
|
|
|
|
# setup so that we can get a name.
|
|
|
|
if(test -e /rc/bin/termrc.local)
|
|
|
|
. /rc/bin/termrc.local
|
|
|
|
|
2013-02-27 17:04:35 +00:00
|
|
|
# cs sets sysname (termrc.local may already have started it so check)
|
|
|
|
if(! test -e /srv/cs && ! test -e /net/cs)
|
|
|
|
ndb/cs
|
2011-03-30 14:14:36 +00:00
|
|
|
sysname=`{cat /dev/sysname}
|
2011-04-14 15:41:59 +00:00
|
|
|
if(~ $#sysname 0 || ~ $sysname ''){
|
2011-05-04 23:07:07 +00:00
|
|
|
sysname=cirno # default
|
2011-03-30 14:14:36 +00:00
|
|
|
echo -n $sysname >/dev/sysname
|
|
|
|
}
|
|
|
|
|
2011-06-06 01:31:58 +00:00
|
|
|
# parallelism for mk
|
2011-10-07 19:02:45 +00:00
|
|
|
NPROC=`{wc -l </dev/sysstat}
|
2011-06-06 01:31:58 +00:00
|
|
|
|
2011-03-30 14:14:36 +00:00
|
|
|
# machine specific startup (e.g., for devices not probed)
|
|
|
|
if(test -e /cfg/$sysname/termrc)
|
|
|
|
. /cfg/$sysname/termrc
|
|
|
|
|
2011-06-09 04:56:16 +00:00
|
|
|
# automatic ip address setup
|
2011-10-07 19:02:45 +00:00
|
|
|
if(test -r /net/ipselftab){
|
|
|
|
if(! grep u /net/ipselftab | grep -sv 127.0.0.1){
|
|
|
|
ether=`{ndb/query sys $sysname ether}
|
|
|
|
if(~ $#ether 1){
|
|
|
|
# try /lib/ndb first, then do dhcp
|
2012-03-29 16:23:21 +00:00
|
|
|
ip/ipconfig -N >[2]/dev/null || ip/ipconfig -h $sysname
|
2011-10-07 19:02:45 +00:00
|
|
|
}
|
|
|
|
rm -f /env/ether
|
2011-06-09 04:56:16 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2011-10-07 19:02:45 +00:00
|
|
|
if(! test -e /net/dns)
|
2011-03-30 14:14:36 +00:00
|
|
|
ndb/dns -r
|
|
|
|
|
|
|
|
if(! ~ $terminal *vx32*){
|
|
|
|
# start timesync if it isn't running and we weren't told not to
|
|
|
|
if(! ps|grep -s timesync)
|
|
|
|
if(! ~ $TIMESYNCARGS '')
|
|
|
|
aux/timesync $TIMESYNCARGS
|
|
|
|
}
|
|
|
|
|
2014-11-05 19:42:47 +00:00
|
|
|
# setup mouse and graphics
|
2015-09-05 01:14:44 +00:00
|
|
|
screenrc
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2011-06-09 04:56:16 +00:00
|
|
|
if(test -f /dev/apm)
|
2011-03-30 14:14:36 +00:00
|
|
|
aux/apm
|
|
|
|
|
2014-04-22 02:26:17 +00:00
|
|
|
dontkill '^(ipconfig|factotum|mntgen|venti|hjfs|kfs|cfs|cwfs.*|9660srv|dossrv|paqfs|cs|dns|listen|reboot|usbd|kb|disk|ether|wpa)$'
|