2011-03-30 14:14:36 +00:00
|
|
|
#!/bin/rc
|
2014-06-12 19:56:54 +00:00
|
|
|
# this file is run if service=cpu
|
2011-05-09 23:07:41 +00:00
|
|
|
|
2018-04-12 19:30:28 +00:00
|
|
|
# parallelism for mk
|
|
|
|
NPROC=`{wc -l </dev/sysstat}
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2018-04-12 19:30:28 +00:00
|
|
|
# bind all likely devices
|
2018-05-01 21:46:57 +00:00
|
|
|
for(i in u t S P '$')
|
2011-06-06 01:31:58 +00:00
|
|
|
bind -a '#'^$i /dev >/dev/null >[2=1]
|
2018-04-12 19:30:28 +00:00
|
|
|
rm -f /env/i
|
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 05:05:23 +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-03-30 14:14:36 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
# usb listener
|
|
|
|
nusbrc
|
|
|
|
|
2013-02-27 16:59:57 +00:00
|
|
|
# site-specific startup
|
|
|
|
if(test -e /rc/bin/cpurc.local)
|
|
|
|
. /rc/bin/cpurc.local
|
|
|
|
|
2018-04-12 19:30:28 +00:00
|
|
|
# cs sets sysname (cpurc.local may already have started it so check)
|
|
|
|
if(! test -e /srv/cs && ! test -e /net/cs)
|
|
|
|
ndb/cs
|
|
|
|
sysname=`{cat /dev/sysname}
|
|
|
|
if(~ $#sysname 0 || ~ $sysname ''){
|
2011-06-09 04:56:16 +00:00
|
|
|
sysname=cirno # default
|
2011-03-30 14:14:36 +00:00
|
|
|
echo -n $sysname >/dev/sysname
|
|
|
|
}
|
|
|
|
prompt=($sysname^'# ' ' ')
|
|
|
|
|
2018-04-12 19:30:28 +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]
|
|
|
|
rm -f /env/disk
|
2011-10-07 19:02:45 +00:00
|
|
|
|
2011-03-30 14:14:36 +00:00
|
|
|
# cpu-specific startup
|
|
|
|
if(test -e /cfg/$sysname/cpurc)
|
|
|
|
. /cfg/$sysname/cpurc
|
|
|
|
|
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){
|
2018-10-02 22:53:10 +00:00
|
|
|
if(! grep u /net/ipselftab | grep -sv '^(127.0.0.1|::1)'){
|
2018-05-01 21:46:57 +00:00
|
|
|
addrs=`{ndb/query -a sys $sysname ether}
|
|
|
|
if(! ~ $#addrs 0){
|
|
|
|
for(ether in /net/ether*){
|
2021-04-10 13:01:09 +00:00
|
|
|
addr=`{cat $ether/addr >[2]/dev/null}
|
2018-05-01 21:46:57 +00:00
|
|
|
switch($addr){
|
|
|
|
case $addrs
|
2018-08-15 19:39:30 +00:00
|
|
|
# try /lib/ndb first, then do dhcp/slaac
|
|
|
|
ip/ipconfig -6 ether $ether
|
|
|
|
ip/ipconfig -N ether $ether >[2]/dev/null || @{
|
2019-03-27 13:11:25 +00:00
|
|
|
test -e /env/nora6 || ip/ipconfig ether $ether ra6 recvra 1 &
|
2018-08-15 19:39:30 +00:00
|
|
|
ip/ipconfig -h $sysname ether $ether &
|
|
|
|
wait
|
|
|
|
}
|
2018-05-01 21:46:57 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-07 19:02:45 +00:00
|
|
|
}
|
2018-05-01 21:46:57 +00:00
|
|
|
rm -f /env/ether /env/addrs /env/addr
|
2011-06-09 04:56:16 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2015-08-25 09:35:10 +00:00
|
|
|
if(! test -e /net/dns)
|
2011-03-30 14:14:36 +00:00
|
|
|
ndb/dns -r
|
|
|
|
|
2011-06-09 04:56:16 +00:00
|
|
|
if(! ps|grep -s timesync){
|
|
|
|
if(~ $#ntp 0)
|
2011-06-09 07:35:31 +00:00
|
|
|
. <{ndb/ipquery sys $sysname ntp | sed 's, +,\n,g'}
|
2011-06-09 04:56:16 +00:00
|
|
|
if(~ $#ntp 0)
|
|
|
|
ntp=pool.ntp.org
|
2015-08-25 09:35:10 +00:00
|
|
|
aux/timesync -n $ntp
|
2011-06-09 04:56:16 +00:00
|
|
|
sleep 2
|
|
|
|
}
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2017-04-19 09:00:44 +00:00
|
|
|
if(test -d /cfg/$sysname/service)
|
|
|
|
serviced=/cfg/$sysname/service
|
|
|
|
if not if(test -d /cfg/default/service)
|
|
|
|
serviced=/cfg/default/service
|
|
|
|
if not
|
|
|
|
serviced=/rc/bin/service
|
2018-09-16 10:43:21 +00:00
|
|
|
if(~ $#auth 0)
|
|
|
|
auth=`{ndb/ipquery sys $sysname auth | sed 's,auth=,,g'}
|
|
|
|
if(@{
|
|
|
|
for(a in `{ndb/ipquery sys $sysname ip sys dom | sed 's,(ip|sys|dom)=,,g'}){
|
|
|
|
if(~ $a $auth)
|
|
|
|
exit ''
|
|
|
|
}
|
|
|
|
exit 'no'
|
|
|
|
}){
|
2011-06-09 04:56:16 +00:00
|
|
|
# cpu+auth server
|
|
|
|
auth/keyfs -wp -m /mnt/keys /adm/keys
|
2017-04-19 09:00:44 +00:00
|
|
|
aux/listen -q -t /rc/bin/service.auth -d $serviced tcp
|
2018-09-16 10:43:21 +00:00
|
|
|
}
|
|
|
|
if not {
|
2011-06-09 04:56:16 +00:00
|
|
|
# cpu server
|
2017-04-19 09:00:44 +00:00
|
|
|
aux/listen -q -d $serviced tcp
|
2011-03-30 14:14:36 +00:00
|
|
|
}
|
|
|
|
|
2011-06-09 07:35:31 +00:00
|
|
|
if(test -f /dev/apm)
|
|
|
|
aux/apm
|
2011-03-30 14:14:36 +00:00
|
|
|
|
2011-07-24 08:04:12 +00:00
|
|
|
if(test -e /cfg/$sysname/cpustart)
|
|
|
|
. /cfg/$sysname/cpustart
|
|
|
|
|
2011-03-30 14:14:36 +00:00
|
|
|
# mode of /proc/*/ctl is inherited across rfork, and sets modes on
|
|
|
|
# other /proc files, such as note, so let listen be killed.
|
2014-04-22 02:26:17 +00:00
|
|
|
dontkill '^(ipconfig|factotum|mntgen|venti|hjfs|kfs|cfs|cwfs.*|9660srv|dossrv|paqfs|cs|dns|reboot|usbd|kb|disk|ether|wpa)$'
|