summaryrefslogtreecommitdiffstats
path: root/release/picobsd/build/Makefile.conf
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2001-01-29 22:47:46 +0000
committerluigi <luigi@FreeBSD.org>2001-01-29 22:47:46 +0000
commit35aa9c12fd78c8f229020ed46bdac09cd2d8972c (patch)
tree11ea84fa24155d5b67ffc829d86fa9a2d3c61007 /release/picobsd/build/Makefile.conf
parente70d2f3aa935a938ff262ba081796ab8d17cac5e (diff)
downloadFreeBSD-src-35aa9c12fd78c8f229020ed46bdac09cd2d8972c.zip
FreeBSD-src-35aa9c12fd78c8f229020ed46bdac09cd2d8972c.tar.gz
Put picobsd build scripts in sync with the ones in -STABLE.
With these scripts i was able to build a _working_ image of a bridge-like floppy image with a reasonable set of utilities in it, despite the code size increase we have in 5.0 The scripts are slightly different from the previous ones especially on the place where the kernel and binaries are built. Hopefully this will not cause too much trouble to people (is there any???) using the old scripts.
Diffstat (limited to 'release/picobsd/build/Makefile.conf')
-rw-r--r--release/picobsd/build/Makefile.conf8
1 files changed, 5 insertions, 3 deletions
diff --git a/release/picobsd/build/Makefile.conf b/release/picobsd/build/Makefile.conf
index ac5915b..92bf2ec 100644
--- a/release/picobsd/build/Makefile.conf
+++ b/release/picobsd/build/Makefile.conf
@@ -6,7 +6,7 @@ SRC?=/usr/src
CONF?=$(SRC)/sys/i386/conf
CONFFILE=PICOBSD${suffix}
-COMPILE=$(OBJ)/usr/src/sys/$(CONFFILE)
+COMPILE=$(SRC)/sys/compile/$(CONFFILE)
KERNFILE=$(COMPILE)/kernel
all: $(KERNFILE)
@@ -17,8 +17,10 @@ ${CONF}/${CONFFILE}: PICOBSD
cp PICOBSD.hints ${CONF}/${CONFFILE}.hints
${COMPILE}: ${CONF}/${CONFFILE}
+ (cd ${CONF}; config ${CONFFILE}; cd ${COMPILE}; \
+ make KERNEL=kernel -DNO_MODULES depend )
$(KERNFILE): ${COMPILE}
- (cd ${SRC}; \
- make buildkernel KERNEL=${CONFFILE} -DNO_MODULES)
+ (cd ${COMPILE}; \
+ make KERNEL=kernel -DNO_MODULES)
OpenPOWER on IntegriCloud