summaryrefslogtreecommitdiffstats
path: root/release/picobsd/floppy.tree/etc/rc
blob: 3181121a4ceccdb16f899b82e1efb84ea81ca079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
# $FreeBSD$
############################################
### Special setup for one floppy PICOBSD ###
### THIS IS NOT THE NORMAL /etc/rc !!!!! ###
############################################
mount -a -t nonfs
# before calling rc.conf, try to identify the system by using the
# ethernet address and name of the first interface. This is available
# to rc.conf and others as $main_eth $main_if for further processing.

main_ether=""
for main_if in `ifconfig -l` ; do
    set `ifconfig $main_if`
    while [ "$1" != "" ] ; do
	if [ $1 = "ether" ] ; then
	    main_ether=$2
	    break 2
	else
	    shift
	fi
    done
done

if [ -f /etc/rc.conf ]; then
    . /etc/rc.conf
fi
rm -f /var/run/*
if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
	echo "Adding $swapfile as additional swap."
	vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
fi
# configure serial devices
if [ -f /etc/rc.serial ]; then
	. /etc/rc.serial
fi
# start up the initial network configuration.
if [ -f /etc/rc.network ]; then
	. /etc/rc.network
	network_pass1
fi
mount -a -t nfs
chmod 666 /dev/tty[pqrsPQRS]*
# clean up left-over files
(cd /var/run && { cp /dev/null utmp; chmod 644 utmp; })
if [ -n "$network_pass1_done" ]; then
    network_pass2
fi
if [ -n "$network_pass2_done" ]; then
    network_pass3
fi
if [ "X${inetd_enable}" = X"YES" ]; then
	echo "Starting inetd."; inetd ${inetd_flags}
fi

dev_mkdb

echo ''
if [ "x$swapfile" = "xNO" ]; then
	echo "WARNING: no swap partition!"
	echo "Don't run too many programs at the same time..."
fi
echo ''
echo ''
echo '+----------- PicoBSD @VER@ (ISP) ---------------+'
echo '|                                              |'
echo '| Log in as "root" (password "setup").         |'
echo '|                                              |'
echo '| This version of PicoBSD is fully under       |'
echo '| BSD license. For more details see            |'
echo '| http://www.freebsd.org/~picobsd, or contact  |'
echo '| the author.                                  |'
echo '|                                              |'
echo '|                     abial@freebsd.org        |'
echo '|                                              |'
echo '+----------------------------------------------+'
exit 0
OpenPOWER on IntegriCloud