head	1.2;
access;
symbols
	RELENG_4_11_0_RELEASE:1.1.4.1
	RELENG_4_11:1.1.4.1.0.12
	RELENG_4_11_BP:1.1.4.1
	RELENG_4_10_0_RELEASE:1.1.4.1
	RELENG_4_10:1.1.4.1.0.10
	RELENG_4_10_BP:1.1.4.1
	RELENG_4_9_0_RELEASE:1.1.4.1
	RELENG_4_9:1.1.4.1.0.8
	RELENG_4_9_BP:1.1.4.1
	RELENG_4_8_0_RELEASE:1.1.4.1
	RELENG_4_8:1.1.4.1.0.6
	RELENG_4_8_BP:1.1.4.1
	RELENG_4_7_0_RELEASE:1.1.4.1
	RELENG_4_7:1.1.4.1.0.4
	RELENG_4_7_BP:1.1.4.1
	RELENG_4_6_2_RELEASE:1.1.4.1
	RELENG_4_6_1_RELEASE:1.1.4.1
	RELENG_4_6_0_RELEASE:1.1.4.1
	RELENG_4_6:1.1.4.1.0.2
	RELENG_4_6_BP:1.1.4.1
	RELENG_4_5_0_RELEASE:1.1
	RELENG_4_5:1.1.0.10
	RELENG_4_5_BP:1.1
	RELENG_4_4_0_RELEASE:1.1
	RELENG_4_4:1.1.0.8
	RELENG_4_4_BP:1.1
	RELENG_4_3_0_RELEASE:1.1
	RELENG_4_3:1.1.0.6
	RELENG_4_3_BP:1.1
	RELENG_4_2_0_RELEASE:1.1
	RELENG_4_1_1_RELEASE:1.1
	PRE_SMPNG:1.1
	RELENG_4_1_0_RELEASE:1.1
	RELENG_3_5_0_RELEASE:1.1.2.1
	RELENG_4_0_0_RELEASE:1.1
	RELENG_4:1.1.0.4
	RELENG_4_BP:1.1
	RELENG_3_4_0_RELEASE:1.1.2.1
	RELENG_3:1.1.0.2;
locks; strict;
comment	@# @;


1.2
date	2002.03.09.08.28.10;	author luigi;	state dead;
branches;
next	1.1;

1.1
date	99.10.08.04.00.13;	author dwhite;	state Exp;
branches
	1.1.2.1
	1.1.4.1;
next	;

1.1.2.1
date	99.10.17.23.11.14;	author dwhite;	state Exp;
branches;
next	;

1.1.4.1
date	2002.03.08.13.18.07;	author luigi;	state dead;
branches;
next	;


desc
@@


1.2
log
@Nuke abandoned configuration.
@
text
@#!/bin/sh
# $Id: rc.en,v 1.5 1999/01/19 23:15:41 abial Exp $
############################################
### Special setup for one floppy PICOBSD ###
### THIS IS NOT THE NORMAL /etc/rc !!!!! ###
############################################
mount -a -t nonfs
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

# Launch the installer
. /etc/doinstall

echo ''
echo ''
echo '+----------- PicoBSD @@VER@@ (NET) ---------------+'
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
@


1.1
log
@Add a new floppy type, install.  This type builds a disk that can
slice, partition, newfs, and install FreeBSD from a tarball on a remote server.
Handy for doing mass-installs for server farms.

Documentation following shortly.
@
text
@@


1.1.4.1
log
@Nuke this abandoned configuration which has been broken for ages.
@
text
@@


1.1.2.1
log
@MFC: Add install floppy.
@
text
@@

