head	1.5;
access;
symbols
	RELENG_3_5_0_RELEASE:1.4.2.1
	RELENG_3_4_0_RELEASE:1.4.2.1
	RELENG_3_3_0_RELEASE:1.4.2.1
	RELENG_3_2_PAO:1.4.0.4
	RELENG_3_2_PAO_BP:1.4
	RELENG_3_2_0_RELEASE:1.4
	RELENG_3_1_0_RELEASE:1.4
	RELENG_3:1.4.0.2
	RELENG_3_BP:1.4
	RELENG_3_0_0_RELEASE:1.3;
locks; strict;
comment	@# @;


1.5
date	99.08.22.21.44.18;	author dwhite;	state dead;
branches;
next	1.4;

1.4
date	99.01.14.23.21.57;	author abial;	state Exp;
branches
	1.4.2.1;
next	1.3;

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

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

1.1
date	98.09.03.10.41.29;	author abial;	state Exp;
branches;
next	;

1.4.2.1
date	99.08.22.23.08.44;	author dwhite;	state dead;
branches;
next	;


desc
@@


1.5
log
@Major PicoBSD update by luigi with some debugging help from myself.

. Now builds on -STABLE (-CURRENT is broken due to bugs)
. etc directory contents centralized instead of in each
  type directory (can exclude & override as desired)
. Removed extraneous language files (lang files for rc really necessary?)
. dialog-based build tool with support for custom floppy builds
. MFS image loads as a mfs_root module instead of compiled into kernel

THIS IS BROKEN ON CURRENT.  I'll MFC to -STABLE immediately following.
luigi tells me I have an OK from jkh on the MFC.

Submitted by:	luigi
@
text
@# $Id: Makefile,v 1.4 1999/01/14 23:21:57 abial Exp $
#

SRC?=/usr/src
CONF?=$(SRC)/sys/i386/conf

CONFFILE=PICOBSD${suffix}.${SIZE}
COMPILE=$(SRC)/sys/compile/$(CONFFILE)
KERNFILE=$(COMPILE)/kernel

all: $(KERNFILE)

$(KERNFILE): PICOBSD
	cat PICOBSD | grep -v "MFS_ROOT" > ${CONF}/${CONFFILE}
	echo "options	MFS_ROOT" >> ${CONF}/${CONFFILE}
	echo "options	MFS_ROOT_SIZE=${SIZE}" >> ${CONF}/${CONFFILE}
	(cd ${CONF}; \
	config ${CONFFILE}; \
	cd ${COMPILE}; \
	make depend all)

@


1.4
log
@Change to new syscons devices.
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.3 1998/10/15 21:40:02 abial Exp $
@


1.4.2.1
log
@MFC: PicoBSD mega-upgrade.  It actually works in -STABLE, let's hope I
didn't miss anything.  According to luigi, I have jkh's OK on this.

Submitted by:  luigi
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.4 1999/01/14 23:21:57 abial Exp $
@


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

The PicoBSD version is now 0.42.
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.2 1998/09/29 12:12:47 abial Exp $
d20 1
a20 1
	make depend && make)
@


1.2
log
@Make proper use of ${suffix} instead of hardwired suffixes.

Pointed out by:	Randal Masutani <randal@@comtest.com>
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.1 1998/09/03 10:41:29 abial Exp $
d15 2
a16 1
	echo "options	\"MFS_ROOT=${SIZE}\"" >> ${CONF}/${CONFFILE}
@


1.1
log
@Added Makefile to have true dependency of kernel image on the kernel
config file.
@
text
@d1 1
a1 1
# $Id$
d7 1
a7 1
CONFFILE=PICOBSD-N.${SIZE}
@
