summaryrefslogtreecommitdiffstats
path: root/release/picobsd/build/Makefile.conf
diff options
context:
space:
mode:
authordwhite <dwhite@FreeBSD.org>1999-08-22 21:45:24 +0000
committerdwhite <dwhite@FreeBSD.org>1999-08-22 21:45:24 +0000
commit9cda01decb3256ad946657e0fc9a298213d4eaa8 (patch)
tree0de7c224091527fca4800e72ffaf6f9673980bfd /release/picobsd/build/Makefile.conf
parent2bbfd73cc7441111e9e49645afb397eb04b1af45 (diff)
downloadFreeBSD-src-9cda01decb3256ad946657e0fc9a298213d4eaa8.zip
FreeBSD-src-9cda01decb3256ad946657e0fc9a298213d4eaa8.tar.gz
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
Diffstat (limited to 'release/picobsd/build/Makefile.conf')
-rw-r--r--release/picobsd/build/Makefile.conf23
1 files changed, 23 insertions, 0 deletions
diff --git a/release/picobsd/build/Makefile.conf b/release/picobsd/build/Makefile.conf
new file mode 100644
index 0000000..15e308a
--- /dev/null
+++ b/release/picobsd/build/Makefile.conf
@@ -0,0 +1,23 @@
+# $Id: Makefile,v 1.4 1999/01/14 23:20:09 abial Exp $
+#
+# Makefile for building PICOBSD kernels
+
+SRC?=/usr/src
+CONF?=$(SRC)/sys/i386/conf
+
+#CONFFILE=PICOBSD${suffix}.${SIZE}
+CONFFILE=PICOBSD${suffix}
+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)
+
OpenPOWER on IntegriCloud