head	1.7;
access;
symbols
	RELENG_4_11_0_RELEASE:1.5.2.1
	RELENG_4_11:1.5.2.1.0.12
	RELENG_4_11_BP:1.5.2.1
	RELENG_4_10_0_RELEASE:1.5.2.1
	RELENG_4_10:1.5.2.1.0.10
	RELENG_4_10_BP:1.5.2.1
	RELENG_5_2_1_RELEASE:1.6
	RELENG_5_2_0_RELEASE:1.6
	RELENG_5_2:1.6.0.6
	RELENG_5_2_BP:1.6
	RELENG_4_9_0_RELEASE:1.5.2.1
	RELENG_4_9:1.5.2.1.0.8
	RELENG_4_9_BP:1.5.2.1
	RELENG_5_1_0_RELEASE:1.6
	RELENG_5_1:1.6.0.4
	RELENG_5_1_BP:1.6
	RELENG_4_8_0_RELEASE:1.5.2.1
	RELENG_4_8:1.5.2.1.0.6
	RELENG_4_8_BP:1.5.2.1
	RELENG_5_0_0_RELEASE:1.6
	RELENG_5_0:1.6.0.2
	RELENG_5_0_BP:1.6
	RELENG_4_7_0_RELEASE:1.5.2.1
	RELENG_4_7:1.5.2.1.0.4
	RELENG_4_7_BP:1.5.2.1
	RELENG_4_6_2_RELEASE:1.5.2.1
	RELENG_4_6_1_RELEASE:1.5.2.1
	RELENG_4_6_0_RELEASE:1.5.2.1
	RELENG_4_6:1.5.2.1.0.2
	RELENG_4_6_BP:1.5.2.1
	RELENG_4_5_0_RELEASE:1.5
	RELENG_4_5:1.5.0.8
	RELENG_4_5_BP:1.5
	RELENG_4_4_0_RELEASE:1.5
	RELENG_4_4:1.5.0.6
	RELENG_4_4_BP:1.5
	RELENG_4_3_0_RELEASE:1.5
	RELENG_4_3:1.5.0.4
	RELENG_4_3_BP:1.5
	RELENG_4_2_0_RELEASE:1.5
	RELENG_4_1_1_RELEASE:1.5
	PRE_SMPNG:1.6
	RELENG_4_1_0_RELEASE:1.5
	RELENG_3_5_0_RELEASE:1.4.2.2
	RELENG_4_0_0_RELEASE:1.5
	RELENG_4:1.5.0.2
	RELENG_4_BP:1.5
	RELENG_3_4_0_RELEASE:1.4.2.2
	RELENG_3_3_0_RELEASE:1.4.2.2
	RELENG_3:1.4.0.2
	RELENG_3_0_0_RELEASE:1.3
	v0_4:1.1.1.1
	PICOBSD:1.1.1;
locks; strict;
comment	@# @;


1.7
date	2004.03.24.07.51.39;	author luigi;	state dead;
branches;
next	1.6;

1.6
date	2000.04.25.19.00.06;	author dwhite;	state Exp;
branches;
next	1.5;

1.5
date	99.08.28.06.22.07;	author roger;	state Exp;
branches
	1.5.2.1;
next	1.4;

1.4
date	98.10.25.15.48.17;	author abial;	state dead;
branches
	1.4.2.1;
next	1.3;

1.3
date	98.10.15.21.40.04;	author abial;	state Exp;
branches;
next	1.2;

1.2
date	98.09.26.17.27.23;	author abial;	state Exp;
branches;
next	1.1;

1.1
date	98.08.27.17.38.43;	author abial;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	98.08.27.17.38.43;	author abial;	state Exp;
branches;
next	;

1.4.2.1
date	99.08.23.13.48.43;	author luigi;	state Exp;
branches;
next	1.4.2.2;

1.4.2.2
date	99.08.29.15.53.11;	author peter;	state Exp;
branches;
next	;

1.5.2.1
date	2002.03.08.13.49.59;	author luigi;	state dead;
branches;
next	;


desc
@@


1.7
log
@Remove this picobsd floppy type.
We only want to support one in -current, and let people take care
of their own images.
@
text
@#!/bin/sh -
# $FreeBSD: src/release/picobsd/net/floppy.tree/etc/rc,v 1.6 2000/04/25 19:00:06 dwhite 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
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.6
log
@Commit PicoBSD mega-patch:
. 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>
@
text
@d2 1
a2 1
# $FreeBSD: src/release/picobsd/net/floppy.tree/etc/rc,v 1.5 1999/08/28 06:22:07 roger Exp $
@


1.5
log
@Add file which was missing from previous commits
@
text
@d1 2
a2 2
#!/bin/sh
# $FreeBSD: rc,v 1.4.2.1 1999/08/23 13:48:43 luigi Exp $
@


1.5.2.1
log
@Unbreak this configuration.
@
text
@d2 1
a2 1
# $FreeBSD: src/release/picobsd/net/floppy.tree/etc/rc,v 1.5 1999/08/28 06:22:07 roger Exp $
@


1.4
log
@Remove redundant files (they are recreated during building from templates
in ../../lang/).
@
text
@d2 1
a2 1
# $Id: rc,v 1.3 1998/10/15 21:40:04 abial Exp $
d13 1
a13 1
	echo "Dodaje $swapfile jako dodatkowy swap."
d26 1
d36 1
a36 4
	echo "Uruchamiam inetd."; inetd ${inetd_flags}
fi
if [ "X${snmpd_enable}" = X"YES" ]; then
	echo "Uruchamiam snmpd."; snmpd ${snmpd_flags}
d43 2
a44 2
	echo "UWAGA: brak swapu!"
	echo "Nie uruchamiaj zbyt wielu programow na raz..."
d48 1
a48 1
echo '+------------ PicoBSD 0.42 (NET) --------------+'
d50 1
a50 1
echo '| Zaloguj sie jako "root" (haslo "setup").     |'
d52 4
a55 4
echo '| Ta wersja PicoBSD w pelni podlega            |'
echo '| licencji BSD. Po wiecej szczegolow zajrzyj   |'
echo '| na http://www.freebsd.org/~picobsd, lub      |'
echo '| skontaktuj sie z autorem.                    |'
d57 1
a57 1
echo '|                     abial@@nask.pl            |'
@


1.4.2.1
log
@Add files forgotten in previous commits.
@
text
@d2 1
a2 1
# $Id: rc.en,v 1.5 1999/01/19 23:15:41 abial Exp $
d13 1
a13 1
	echo "Adding $swapfile as additional swap."
a25 1
chmod 666 /dev/tty[pqrsPQRS]*
d35 4
a38 1
	echo "Starting inetd."; inetd ${inetd_flags}
d45 2
a46 2
	echo "WARNING: no swap partition!"
	echo "Don't run too many programs at the same time..."
d50 1
a50 1
echo '+----------- PicoBSD @@VER@@ (NET) ---------------+'
d52 1
a52 1
echo '| Log in as "root" (password "setup").         |'
d54 4
a57 4
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.                                  |'
d59 1
a59 1
echo '|                     abial@@freebsd.org        |'
@


1.4.2.2
log
@$Id$ -> $FreeBSD$
@
text
@d2 1
a2 1
# $FreeBSD$
@


1.3
log
@Various fixups and corrections to match the 3.0-RELEASE tree.

The PicoBSD version is now 0.42.
@
text
@d2 1
a2 1
# $Id: rc.pl,v 1.2 1998/09/26 17:27:24 abial Exp $
@


1.2
log
@Small rearrangements for a bugfix release 0.41.
@
text
@d2 1
a2 1
# $Id: rc.pl,v 1.1.1.1 1998/08/27 17:38:43 abial Exp $
d50 1
a50 1
echo '+------------ PicoBSD 0.41 (NET) --------------+'
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
# $Id: rc,v 1.5 1998/08/19 07:06:31 abial Exp $
d50 1
a50 1
echo '+------------ PicoBSD 0.4 (NET) ---------------+'
@


1.1.1.1
log
@Initial import of PicoBSD v0.4 tree.
@
text
@@
