223b633217
. Bring PicoBSD up to date with -CURRENT reality. . Make PicoBSD smart and not spam /dev/vn0 and /mnt. Now it uses the first unused vn device and creates a temporary mountpoint in /tmp. . Miscellaneous build cleanups and optimizations. Unfortunately the bridge, isp, and router floppies are too big and need the axe treatment. The install floppy needs updating to -CURRENT. Dial and net build and (appear to) run OK. I will be adressing these in the near future (unless someone beats me to it :-) ). PR: misc/17737 Submitted by: Omachonu Ogali <oogali@intranova.net>
36 lines
783 B
Bash
36 lines
783 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
### WARNING !!!!!! #####
|
|
# We remove this file during execution (see EOF).
|
|
# Awful things happen if its size is > 1024B
|
|
|
|
trap : 2
|
|
trap : 3
|
|
|
|
HOME=/; export HOME
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
|
|
export PATH
|
|
|
|
trap "echo 'Reboot interrupted'; exit 1" 3
|
|
|
|
sysctl -w vm.defer_swapspace_pageouts=1 vm.disable_swapspace_pageouts=1 2>&1 >/dev/null
|
|
|
|
echo ""
|
|
echo "-------------------------------------------"
|
|
echo " Please wait. The system is coming up..."
|
|
echo "-------------------------------------------"
|
|
echo ""
|
|
echo "Reading /etc from startup floppy..."
|
|
mount -o rdonly /dev/fd0a /start_floppy
|
|
cd /start_floppy/etc
|
|
cp -Rp . /etc/
|
|
cd /etc
|
|
umount /start_floppy
|
|
echo "Ok. (Now you can remove floppy if you like)"
|
|
echo ""
|
|
|
|
gzip -d -f *.gz
|
|
. rc
|
|
|
|
exit 0
|