Makefile revision 98027
1# $FreeBSD: head/release/Makefile 98027 2002-06-08 03:15:50Z matusita $
2#
3# make release CHROOTDIR=/some/dir BUILDNAME=somename CVSROOT=/cvs/dir \
4#	[ RELEASETAG=tag ]
5#
6# Where "/some/dir" is the pathname of a directory on a some filesystem with
7# at least 1000MB of free space, "somename" is what you want the release to
8# call itself, "/cvs/dir" is where our source repo resides and, optionally,
9# which CVS "tag" name should be used when checking out the sources to build
10# the release (default is HEAD).
11#
12# Please note: the md(4) driver must be compiled into your kernel
13# or available as a kld(4)-style kernel module,
14# otherwise the target 'release.9' and possibly others will fail.
15#
16# Note:  "/some/dir" cannot reside on a filesystem mounted with
17# the "nodev" option, otherwise the chrooted "buildworld" will likely
18# fail.
19#
20# Note: If you add options to this file, please keep release(7) updated!
21#
22# Set these, release builder!
23#
24# Fixed version:
25#BUILDNAME=5.0-RELEASE
26#
27# Automatic SNAP versioning:
28DATE != date +%Y%m%d
29BASE = 5.0
30BUILDNAME?=${BASE}-${DATE}-SNAP
31#
32#CHROOTDIR=/junk/release
33# If this is a -stable snapshot, then set
34#RELEASETAG=RELENG_4
35# If you want to add other options to CVS commands, then set
36#CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'"
37#
38# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
39# are building an official release.  Otherwise, we are building for
40# a branch.
41.if defined(RELEASETAG)
42ISRELEASE!=	expr "${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true
43.if ${ISRELEASE} != 0
44# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
45AUXRELEASETAG!=	echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//'
46DOCRELEASETAG?=		${AUXRELEASETAG}
47PORTSRELEASETAG?=	${AUXRELEASETAG}
48.endif
49.endif
50
51# If you want to pass flags to the world build such as -j X, use
52# WORLD_FLAGS.  Similarly, you can specify make flags for kernel
53# builds via KERNEL_FLAGS.
54#WORLD_FLAGS=-j4
55#KERNEL_FLAGS=-j4
56
57TARGET_ARCH?=	${MACHINE_ARCH}
58.if ${TARGET_ARCH} == ${MACHINE_ARCH}
59TARGET?=	${MACHINE}
60.else
61TARGET?=	${TARGET_ARCH}
62.endif
63CROSSMAKE=	${MAKE} TARGET_ARCH=${TARGET_ARCH} TARGET=${TARGET}
64NATIVEMAKE=	${MAKE} TARGET_ARCH=${MACHINE_ARCH} TARGET=${MACHINE}
65
66# If you are using a local CVS repository with components stored in 
67# non-standard modules, override these on the make commandline or
68# in the environment.
69RELEASESRCMODULE?=	src
70RELEASEDOCMODULE?=	doc
71RELEASEPORTSMODULE?=	ports
72
73# Unless set elsewhere, indicate the object format we'll be using.
74OBJFORMAT?=		elf
75
76# Uncomment this to disable the doc.1 target.  Docs normally require
77# the ports tree, so NOPORTS can be set together with NODOC in order
78# to have neither ports or docs.  If only NOPORTS is set to YES, but
79# docs are still desired, the DOMINIMALDOCPORTS logic below will only
80# install the ports that are minimally required for the docs.  This is
81# intended as a compromise, less disk space is required than for using
82# the entire ports collection (und much less time due to the huge number
83# of directories it would create), but still quite a bit as well as some
84# CPU cycles (some of the programs are C++, and things like ghostscript
85# belong to the required ports nevertheless).
86#
87# Setting this also disables building of release note documentation
88# (RELNOTESng).
89#NODOC=  YES
90#NOPORTS=  YES
91
92# Uncomment and modify this definition if you want the release notes 
93# and other release documentation in a language other than English.
94#RELNOTES_LANG=	en_US.ISO8859-1
95
96# As an alternative to installing the entire ports collection (which
97# can take a huge amount of time, in particular on slower disks),
98# setting ${MINIMALDOCPORTS} allows to install and build just those
99# ports that are really required for getting the docs up & running.
100.if defined(NOPORTS) && !defined(NODOC)
101DOMINIMALDOCPORTS=	YES
102.include "Makefile.inc.docports"
103.endif
104
105# Helper variable
106.if defined(NOPORTS)
107.if !defined(DOMINIMALDOCPORTS) || ${DOMINIMALDOCPORTS} != "YES"
108NOPORTSATALL=	YES
109.endif
110.endif
111
112# Set ALLLANG=no if you want the documentation (e.g. Handbook, FAQ) to be
113# in English only.  The language for the release notes is controlled
114# by the RELNOTES_LANG variable above.
115ALLLANG?=	yes
116DOCPORTS=	textproc/docproj
117# Set this to wherever the distfiles required by release procedures.
118.if defined(DOCDISTFILES)
119# Respect DOCDISTFILES which is used before.
120RELEASEDISTFILES?=	${DOCDISTFILES}
121.else
122RELEASEDISTFILES?=	${.CURDIR}/../../ports/distfiles
123.endif
124# Set this to 1 if you want -P to be used for automatic keyboard detection
125# on the boot floppy.  WARNING: Breaks on some Athlon (K7) motherboards.
126AUTO_KEYBOARD_DETECT?= 0
127
128.if !defined(NODOC)
129DIST_DOCS_ARCH_INDEP=	readme errata
130DIST_DOCS_ARCH_DEP=	installation relnotes hardware
131.endif
132
133# Things which without too much trouble can be considered variables
134# BASE_DISTS are special in that they get full /etc installation sets.
135#
136.if ${TARGET_ARCH} == "i386"
137COMPAT_DISTS?=	compat1x compat20 compat21 compat22 compat3x compat4x
138.else
139COMPAT_DISTS?=	compat4x
140.endif
141OTHER_DISTS?=	games catpages manpages proflibs dict info doc
142CRYPTO_DISTS?=	crypto krb4 krb5
143BASE_DISTS?=	base
144DISTRIBUTIONS?=	${BASE_DISTS} ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS}
145
146BOOT1=	etc/defaults/rc.conf
147
148# mountpoint for filesystems.
149MNT=			/mnt
150
151# Various floppy image parameters.
152#
153
154.if ${TARGET_ARCH} == "i386"
155.if ${TARGET} == "pc98"
156SMALLBOOTSIZE=		1200
157BOOTSIZE=		1440
158FIXITSIZE=		1440
159MFSSIZE=		4320
160BOOTINODE=		80000
161FIXITINODE=		40000
162MFSINODE=		8000
163SMALLBOOTLABEL=		fd1200
164BOOTLABEL=		fd1440
165FIXITLABEL=		fd1440
166MFSLABEL=		minimum3
167.else
168BOOTSIZE=		1440
169FIXITSIZE=		1440
170MFSSIZE=		4320
171BIGBOOTSIZE=		2880
172BOOTINODE=		80000
173FIXITINODE=		40000
174MFSINODE=		8000
175BOOTLABEL=		fd1440
176FIXITLABEL=		fd1440
177MFSLABEL=		minimum3
178BIGBOOTLABEL=		minimum2
179.endif
180.elif ${TARGET_ARCH} == "alpha"
181BOOTSIZE=		1440
182FIXITSIZE=		2880
183MFSSIZE=		4320
184BIGBOOTSIZE=		2880
185BOOTINODE=		80000
186FIXITINODE=		40000
187MFSINODE=		8000
188BOOTLABEL=		fd1440
189FIXITLABEL=		minimum2
190MFSLABEL=		auto
191BIGBOOTLABEL=		minimum2
192.endif
193
194ZIPNSPLIT=		gzip --no-name -9 -c | split -b 240640 -
195
196# Things that need to be recompiled with Kerberos support.
197K4PROGS!=	cd ${.CURDIR}/../kerberosIV; ${MAKE} -V KPROGS
198K5PROGS!=	cd ${.CURDIR}/../kerberos5; ${MAKE} -V KPROGS
199
200# Things that need to be compiled without crypto support in releases
201.if !defined(FIXCRYPTO)
202FIXCRYPTO=	bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/tcpdump/tcpdump 
203.if !defined(NO_SENDMAIL)
204FIXCRYPTO+=	usr.sbin/sendmail
205.endif
206.endif
207
208
209# Things which may get you into trouble if you change them
210MTREEFILES=		${.CURDIR}/../etc/mtree
211_R?=			/R
212RD=			${_R}/stage
213RND=			${RD}/release.doc
214FD=			${_R}/ftp
215CD=			${_R}/cdrom
216CD_DISC1=		${CD}/disc1
217CD_DISC2=		${CD}/disc2
218
219# Where the bootstrap ports (see DOCPORTS) get installed.
220LOCALDIR=		/usr/local/bin
221
222.if !defined(CRUNCH_TARGETS)
223CRUNCH_TARGETS=	boot fixit
224.endif
225
226EXTRAS= cdrom.1 ftp.1
227.if defined(MAKE_ISOS)
228EXTRAS+= iso.1
229.if ${TARGET} != "pc98"
230BOOTABLE="-b"
231.endif
232.endif
233
234.if !defined(NODOC)
235DOCREL= doc.1 doc.2
236.endif
237
238.if !defined(NOPORTREADMES)
239MAKEREADMES=	make readmes PORTSDIR=${CHROOTDIR}/usr/ports
240.else
241MAKEREADMES=	true
242.endif
243
244TMAKE!=		cd ${.CURDIR}/..; ${MAKE} -f Makefile.inc1 -V TMAKE
245WMAKEENV!=	echo MAKEFLAGS=\"-m ${.CURDIR}/../share/mk\"; \
246		cd ${.CURDIR}/..; ${CROSSMAKE} -f Makefile.inc1 -V WMAKEENV
247WMAKE=		${WMAKEENV} ${MAKE}
248
249rerelease release:
250.if !defined(CHROOTDIR) || !defined(BUILDNAME) || !defined(CVSROOT)
251	@echo "To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false
252.endif
253.if defined(NOPORTSATALL) && !defined(NODOC)
254	@echo "Ports are required for building the docs.  Either set NODOC or"
255	@echo "unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!"
256	@exit 1
257.endif
258.if make(release)
259.if exists(${CHROOTDIR})
260# The first command will fail on a handful of files that have their schg
261# flags set.  But it greatly speeds up the next two commands.
262	-rm -rf ${CHROOTDIR} 2>/dev/null
263	-chflags -R noschg ${CHROOTDIR}/.
264	-rm -rf ${CHROOTDIR}
265.endif
266	mkdir -p ${CHROOTDIR}
267	@echo ">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`"
268	cd ${.CURDIR}/.. && ${NATIVEMAKE} -DNOGAMES -DNOHTML -DNOINFO -DNOMAN \
269	    -DNOPROFILE installworld DESTDIR=${CHROOTDIR}
270	cd ${.CURDIR}/../etc && ${NATIVEMAKE} distribution DESTDIR=${CHROOTDIR}
271	if [ -f /etc/resolv.conf ]; then \
272		cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \
273	fi
274.if !defined(RELEASETAG)
275	cd ${CHROOTDIR}/usr && rm -rf src && \
276		cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P ${RELEASESRCMODULE}
277.else
278	cd ${CHROOTDIR}/usr && rm -rf src && \
279		cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P -r ${RELEASETAG} ${RELEASESRCMODULE}
280.endif
281.if defined(LOCAL_PATCHES) && exists(${LOCAL_PATCHES})
282	cd ${CHROOTDIR}/usr/src && patch ${PATCH_FLAGS} < ${LOCAL_PATCHES}
283.endif
284.if defined(LOCAL_SCRIPT) && exists(${LOCAL_SCRIPT})
285	cd ${CHROOTDIR} && env CHROOTDIR=${CHROOTDIR} BUILDNAME=${BUILDNAME} RELEASETAG=${RELEASETAG} ${LOCAL_SCRIPT}
286.endif
287.if !defined(NOPORTS)
288.if defined(PORTSRELEASETAG)
289	cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P -r ${PORTSRELEASETAG} ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES}
290.else
291	cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES}
292.endif
293.elif defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES"
294.if defined(PORTSRELEASETAG)
295	cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P -r ${PORTSRELEASETAG} ${MINIMALDOCPORTS}
296.else
297	cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P ${MINIMALDOCPORTS}
298.endif
299.endif
300.if !defined(NODOC)
301.if defined(DOCRELEASETAG)
302	cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P -r ${DOCRELEASETAG} ${RELEASEDOCMODULE}
303.else
304	cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} co ${CVSCMDARGS} -P ${RELEASEDOCMODULE}
305.endif
306	if [ -d ${RELEASEDISTFILES}/ ]; then \
307		cp -rp ${RELEASEDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \
308	else \
309		mkdir -p ${CHROOTDIR}/usr/ports/distfiles; \
310	fi
311.endif
312.endif
313.if make(rerelease)
314.if !defined(RELEASENOUPDATE)
315.if !defined(RELEASETAG)
316	cd ${CHROOTDIR}/usr/src && cvs -R -q update ${CVSCMDARGS} -P -d -A
317.else
318	cd ${CHROOTDIR}/usr/src && cvs -R -q update ${CVSCMDARGS} -P -d -r ${RELEASETAG}
319.endif
320.if !defined(NOPORTS)
321	cd ${CHROOTDIR}/usr/ports && cvs -R -q update ${CVSCMDARGS} -P -d
322.endif
323.if defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES"
324	for i in ${MINIMALDOCPORTS}; do \
325		( cd ${CHROOTDIR}/usr/$$i && cvs -R -q update ${CVSCMDARGS} -P -d ) ; \
326	done
327.endif
328.if !defined(NODOC)
329	cd ${CHROOTDIR}/usr/doc && cvs -R -q update ${CVSCMDARGS} -P -d
330.endif
331.endif
332.endif
333	# Add version information to those things that need it.
334	( cd ${CHROOTDIR}/usr/src/sys/conf && \
335	  mv newvers.sh foo && \
336	  sed "s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo > newvers.sh && rm foo )
337	echo OBJFORMAT=${OBJFORMAT} > ${CHROOTDIR}/etc/objformat
338	-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
339	echo "#!/bin/sh"			> ${CHROOTDIR}/mk
340	echo "set -ex"				>> ${CHROOTDIR}/mk
341	echo "_RELTARGET=\$${1:-doRELEASE}"	>> ${CHROOTDIR}/mk
342	echo "export CFLAGS='-O -pipe'"	>> ${CHROOTDIR}/mk
343	echo "export WITHOUT_X11=YES"		>> ${CHROOTDIR}/mk
344	echo "export DISTRIBUTIONS=\"${DISTRIBUTIONS}\"" >> ${CHROOTDIR}/mk
345	echo "export BUILDNAME=${BUILDNAME}"	>> ${CHROOTDIR}/mk
346	echo "export OBJFORMAT=${OBJFORMAT}"	>> ${CHROOTDIR}/mk
347.if defined(RELEASETAG)
348	echo "export RELEASETAG=\"${RELEASETAG}\""	>> ${CHROOTDIR}/mk
349.endif
350.if defined(NOPORTS)
351	echo "export NOPORTS=${NOPORTS}"	>> ${CHROOTDIR}/mk
352.endif
353.if defined(MAKE_ISOS)
354	echo "export MAKE_ISOS=${MAKE_ISOS}"	>> ${CHROOTDIR}/mk
355.endif
356.if defined(DOMINIMALDOCPORTS)
357	echo "export DOMINIMALDOCPORTS=${DOMINIMALDOCPORTS}" >> ${CHROOTDIR}/mk
358.endif
359.if defined(NODOC)
360	echo "export NODOC=${NODOC}"		>> ${CHROOTDIR}/mk
361.endif
362.if defined(ALLLANG) && ${ALLLANG} != "NO" && ${ALLLANG} != "no"
363	echo "export ALLLANG=${ALLLANG}"	>> ${CHROOTDIR}/mk
364.else
365	echo "export DOC_LANG=en_US.ISO8859-1"	>> ${CHROOTDIR}/mk
366.endif
367.if defined(NOSRC)
368	echo "export NOSRC=${NOSRC}"		>> ${CHROOTDIR}/mk
369.endif
370.if defined(RELNOTES_LANG)
371	echo "export RELNOTES_LANG=${RELNOTES_LANG}"	>> ${CHROOTDIR}/mk
372.else
373	echo "export RELNOTES_LANG=en_US.ISO8859-1"	>> ${CHROOTDIR}/mk
374.endif
375.if defined(NOSHARED)
376	echo "export NOSHARED=${NOSHARED}"	>> ${CHROOTDIR}/mk
377.endif
378.if defined(BOOT_CONFIG)
379	echo "export BOOT_CONFIG=\"${BOOT_CONFIG}\"">> ${CHROOTDIR}/mk
380.endif
381.if defined(WORLD_FLAGS)
382	echo "export WORLD_FLAGS=\"${WORLD_FLAGS}\""	>> ${CHROOTDIR}/mk
383.endif
384.if defined(KERNEL_FLAGS)
385	echo "export KERNEL_FLAGS=\"${KERNEL_FLAGS}\"" >> ${CHROOTDIR}/mk
386.endif
387.if defined(TARGET)
388	echo "export TARGET=\"${TARGET}\"" >> ${CHROOTDIR}/mk
389.endif
390.if defined(TARGET_ARCH)
391	echo "export TARGET_ARCH=\"${TARGET_ARCH}\"" >> ${CHROOTDIR}/mk
392.endif
393	# Don't remove this, or the build will fall over!
394	echo "export RELEASEDIR=${_R}"		>> ${CHROOTDIR}/mk
395	echo "export PATH=$${PATH}:${LOCALDIR}"	>> ${CHROOTDIR}/mk
396	echo "export TMPDIR=/tmp"		>> ${CHROOTDIR}/mk
397	echo "export MAKEOBJDIRPREFIX=/usr/obj"	>> ${CHROOTDIR}/mk
398	echo "export MANBUILDCAT=YES"		>> ${CHROOTDIR}/mk
399	echo "if [ ! -f /tmp/.world_done ]; then" >> ${CHROOTDIR}/mk
400	echo "	cd /usr/src"			>> ${CHROOTDIR}/mk
401	echo "	${CROSSMAKE} ${WORLD_FLAGS} -DNOCLEAN buildworld && \\" >> ${CHROOTDIR}/mk
402	echo "	touch /tmp/.world_done"		>> ${CHROOTDIR}/mk
403	echo "fi"				>> ${CHROOTDIR}/mk
404	echo "cd /usr/src/release"		>> ${CHROOTDIR}/mk
405	echo "make obj"				>> ${CHROOTDIR}/mk
406	echo "make \$${_RELTARGET}"		>> ${CHROOTDIR}/mk
407	echo "echo \">>> make ${.TARGET} for ${TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${CHROOTDIR}/mk
408	chmod 755 ${CHROOTDIR}/mk
409	chroot ${CHROOTDIR} /mk
410
411clean:
412	rm -rf boot_crunch release.[0-9]
413
414# Clean out ${_R} and make the directory structure.
415release.1:
416	mkdir -p ${_R}
417	-rm -rf ${_R}/* 2> /dev/null
418	-chflags -R noschg ${_R}/.
419	rm -rf ${_R}/*
420	mkdir ${RD}
421	mkdir ${RD}/floppies
422	mkdir ${RD}/trees
423	mkdir ${RD}/kernels
424	for i in ${DISTRIBUTIONS} ; do \
425		mkdir ${RD}/trees/$$i && \
426		mtree -deU -f ${MTREEFILES}/BSD.root.dist \
427		    -p ${RD}/trees/$$i > /dev/null && \
428		mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
429		    -p ${RD}/trees/$$i/usr > /dev/null && \
430		mtree -deU -f ${MTREEFILES}/BSD.include.dist \
431		    -p ${RD}/trees/$$i/usr/include > /dev/null && \
432		mtree -deU -f ${MTREEFILES}/BSD.var.dist \
433		    -p ${RD}/trees/$$i/var > /dev/null ; \
434	done
435	touch release.1
436
437# Install the system into the various distributions.
438release.2:
439	cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/trees/base
440	cd ${.CURDIR}/.. && ${CROSSMAKE} distributeworld DISTDIR=${RD}/trees
441	touch release.2
442
443# Build and install crypto, krb4 and krb5 distributions.
444release.3:
445	# Handle some grief caused by the munition braindeadness.
446	cd ${.CURDIR}/..; \
447	${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DNOCRYPT \
448	    SUBDIR_OVERRIDE="${FIXCRYPTO}" \
449	    buildworld distributeworld DISTDIR=${RD}/trees
450.if exists(${.CURDIR}/../kerberosIV) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
451	cd ${.CURDIR}/..; \
452	${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DMAKE_KERBEROS4 \
453	    SUBDIR_OVERRIDE="kerberosIV ${K4PROGS}" \
454	    buildworld distributeworld DISTDIR=${RD}/trees
455.endif
456.if exists(${.CURDIR}/../kerberos5) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
457	cd ${.CURDIR}/..; \
458	${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DMAKE_KERBEROS5 \
459	    SUBDIR_OVERRIDE="kerberos5 ${K5PROGS}" \
460	    buildworld distributeworld DISTDIR=${RD}/trees
461.endif
462	-chflags -R noschg ${RD}/trees
463	touch release.3
464
465# Make and install the generic kernel(s).
466release.4:
467.for kernel in ${KERNELS}
468	cd ${.CURDIR}/..; \
469	${CROSSMAKE} ${KERNEL_FLAGS} -DNO_WERROR -DNO_MODULES \
470	    KERNCONF=${kernel} INSTKERNNAME=${kernel} kernel \
471	    DESTDIR=${RD}/trees/base
472.endfor
473	# Install a standard boot kernel+modules.
474	cd ${.CURDIR}/..; \
475	${CROSSMAKE} ${KERNEL_FLAGS} -DNO_WERROR \
476	    kernel \
477	    DESTDIR=${RD}/trees/base; \
478	cd ${.CURDIR}/..; \
479	${CROSSMAKE} ${KERNEL_FLAGS} -DNO_MODULES \
480	    reinstallkernel -DINSTALL_DEBUG \
481	    DESTDIR=${RD}/trees/base
482	touch release.4
483
484# Make and install the three crunched binaries which live on the floppies.
485# You are not supposed to like this :-)
486release.5:
487	rm -rf ${RD}/crunch
488	mkdir -p ${RD}/crunch
489.for j in ${CRUNCH_TARGETS}
490	rm -rf ${j}_crunch
491	mkdir ${j}_crunch
492.if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf)
493	cd ${j}_crunch; ${WMAKEENV} crunchgen ${.CURDIR}/${TARGET}/${j}_crunch.conf
494.else
495	cd ${j}_crunch; ${WMAKEENV} crunchgen ${.CURDIR}/${j}_crunch.conf
496.endif
497	cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean
498	cd ${.CURDIR}/..; ${TMAKE} build-tools
499	cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk all
500	mv ${j}_crunch/${j}_crunch ${RD}/crunch/${j}
501.endfor
502	touch release.5
503
504#
505# --==## Fix up the distributions. ##==--
506#
507release.6:
508	# Create any "synthetic dists" now.
509	@for i in ${DISTRIBUTIONS}; do \
510		if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
511			echo -n "Running $$i dist creation script... "; \
512			env OBJFORMAT=${OBJFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
513			echo "Done."; \
514		fi \
515	done \
516
517	# Remove all the directories we don't need.
518	-cd ${RD}/trees && \
519		find ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} -depth -type d -print | xargs rmdir
520	touch release.6
521
522#
523# --==## Package up the tarballs from assembled trees ##==--
524#
525release.7:
526	rm -rf ${RD}/dists
527	mkdir -p ${RD}/dists
528	@for i in ${DISTRIBUTIONS} ; \
529	do \
530		if [ -d ${RD}/trees/$${i} ] ; then \
531			cd ${.CURDIR} && $(MAKE) doTARBALL \
532				SD=${RD}/trees/$${i} \
533				TN=$$i TD=$$i ARG="." && \
534			echo "$${i} distribution is finished."; \
535		fi ; \
536	done
537	# More munition braindeadness.
538	( cd ${RD}/dists && \
539		if [ -f krb4/krb4.aa ] ; then \
540			mv krb4/krb4.* crypto && \
541			cat krb4/CHECKSUM.MD5 >> crypto/CHECKSUM.MD5 && \
542			rm -r krb4; \
543		fi )
544	( cd ${RD}/dists && \
545		if [ -f krb5/krb5.aa ] ; then \
546			mv krb5/krb5.* crypto && \
547			cat krb5/CHECKSUM.MD5 >> crypto/CHECKSUM.MD5 && \
548			rm -r krb5; \
549		fi )
550	touch release.7
551
552
553#
554# --==## Make source dists ##==--
555#
556release.8:
557.if !defined(NOSRC)
558	@cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \
559		TD=src TN=sbase ARG="[A-Z]*"
560	@for i in `cd /usr/src && echo [a-z]*` ; do \
561		if [ -d /usr/src/$$i ] ; then \
562			cd ${.CURDIR} && $(MAKE) doTARBALL \
563				TN=`echo s$$i | tr -d '.' | \
564				    sed -e 's/usr/u/' \
565					-e 's/kerberosIV/krb4/' \
566					-e 's/kerberos5/krb5/'` \
567				SD=/usr/src TD=src ARG="$$i" ; \
568		fi ; \
569	done
570.if defined(EXTRA_SRC)
571	@set ${EXTRA_SRC} && \
572	while [ $$# -ge 2 ] ; do \
573		if [ -d /usr/src/$$1 ] ; then \
574			cd ${.CURDIR} && $(MAKE) doTARBALL \
575				SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \
576		fi && shift && shift ; \
577	done
578.endif
579	if [ -d ${RD}/dists/crypto ] ; then ( cd ${RD}/dists/src && \
580		if [ -f ssecure.aa ] ; then mv ssecure.* ../crypto ; fi && \
581		if [ -f scrypto.aa ] ; then mv scrypto.* ../crypto ; fi && \
582		if [ -f skrb4.aa ] ; then mv skrb4.* ../crypto ; fi && \
583		if [ -f skrb5.aa ] ; then mv skrb5.* ../crypto ; fi ; \
584		cd ${RD}/dists/crypto; rm -f CHECKSUM.MD5; \
585		md5 * > CHECKSUM.MD5 ) ; fi
586	(cd ${RD}/dists/src; rm -f CHECKSUM.MD5; md5 * > CHECKSUM.MD5)
587	@echo "src distribution is finished."
588.endif
589	touch release.8
590
591# Complete the bootfd
592#
593# Now, just to get this picture down once and for all:
594#
595# +------------------------------------------------------------------------+
596# |boot.flp                                                                |
597# +-----+-----+------------------------------------------------------------+
598# |boot1|boot2|floppy filesystem "bootfd"                                  |
599# +-----+-----+-+----------------------+---------------------------------+-+
600#               |kernel.gz             |mfsroot.gz                       |
601#               +----------------------+---------------------------------+
602#
603
604release.9:
605	rm -rf ${RD}/mfsfd
606	mkdir ${RD}/mfsfd
607	cd ${RD}/mfsfd && \
608		mkdir -p etc/defaults dev mnt stand/help
609	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \
610		DIR=${RD}/mfsfd/stand ZIP=false
611	( cd ${RD}/trees/base/dev && \
612		ls console tty bpf0 ttyd0 ttyv0 ttyv1 ttyv2 ttyv3 null zero card0 card1 card2 card3 usb usb0 uhid0 ums0 ulpt0 ugen0 kbd0 kmem mem xpt0 | \
613	cpio -dump ${RD}/mfsfd/dev )
614	( cd ${RD}/mfsfd/dev && rm -f *[swo]d*[bdefgh] )
615	( cd ${RD}/mfsfd && \
616	  for dir in bin sbin ; do \
617		ln -sf /stand $$dir; \
618	  done )
619	cp /sbin/dhclient-script ${RD}/mfsfd/stand
620.if ${TARGET_ARCH} == "i386"
621	cp ${.CURDIR}/../etc/defaults/pccard.conf ${RD}/mfsfd/etc/defaults/pccard.conf
622.endif
623	cp ${.CURDIR}/../etc/usbd.conf ${RD}/mfsfd/etc/usbd.conf
624	cd ${RD}/trees/base && ls ${BOOT1} | cpio -dump ${RD}/mfsfd/stand
625	( for F in netconfig protocols ; do \
626		sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
627		${RD}/trees/base/etc/$$F > ${RD}/mfsfd/stand/etc/$$F ; \
628	  done )
629	grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
630	    ${RD}/trees/base/etc/services | \
631	    sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
632	    > ${RD}/mfsfd/stand/etc/services
633	ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services
634	ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig
635	gzip -9c ${RD}/trees/base/COPYRIGHT > ${RD}/mfsfd/stand/help/COPYRIGHT.hlp.gz
636.if !defined(NODOC)
637	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
638	  gzip -9c ${RND}/${RELNOTES_LANG}/$$i/article.txt > ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT.gz; \
639	done
640	@for i in ${DIST_DOCS_ARCH_DEP}; do \
641	  gzip -9c ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt > ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT.gz; \
642	done
643	@mv ${RD}/mfsfd/stand/help/INSTALLATION.TXT.gz ${RD}/mfsfd/stand/help/INSTALL.TXT.gz
644.endif
645	-test -f ${.CURDIR}/install.cfg && cp ${.CURDIR}/install.cfg ${RD}/mfsfd
646	@mkdir -p ${RD}/mfsfd/boot
647	@cp ${RD}/trees/base/boot/boot* ${RD}/mfsfd/boot
648.if ${TARGET} == "i386"
649	@cp ${RD}/trees/base/boot/mbr ${RD}/mfsfd/boot
650.endif
651	@cp ${RD}/trees/base/boot/loader.help ${RD}/mfsfd/boot
652	@echo "Making the regular boot floppy."
653	@tar --exclude CVS -cf - -C ${.CURDIR}/../usr.sbin/sysinstall help | \
654		tar xf - -C ${RD}/mfsfd/stand
655	@echo "Compressing doc files..."
656	@gzip -9 ${RD}/mfsfd/stand/help/*.hlp
657.if ${TARGET_ARCH} == "alpha"
658	rm -rf ${RD}/mfsfd/stand/help/*
659.endif
660.if exists(${.CURDIR}/${TARGET}/drivers.conf)
661	@mkdir -p ${RD}/mfsfd/stand/modules
662	@awk -f  ${.CURDIR}/scripts/driver-copy2.awk \
663	    ${.CURDIR}/${TARGET}/drivers.conf \
664	    ${RD}/trees/base/boot/kernel ${RD}/mfsfd/stand/modules
665.endif
666	sh -e ${.CURDIR}/scripts/doFS.sh -s mfsroot ${RD} ${MNT} \
667		${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL}
668	@gzip -9vc mfsroot > mfsroot.gz
669.if ${TARGET} == "pc98"
670	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \
671		${RD} ${MNT} ${SMALLBOOTSIZE} mfsroot.gz \
672		${BOOTINODE} ${SMALLBOOTLABEL}
673	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern-small FDSIZE=SMALL
674	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern
675.else
676	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \
677		${RD} ${MNT} ${BOOTSIZE} mfsroot.gz ${BOOTINODE} ${BOOTLABEL}
678	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern
679	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot FDSIZE=BIG
680.endif
681	@rm mfsroot mfsroot.gz
682	@echo "Regular and MFS boot floppies made."
683	touch release.9
684
685#
686# --==## Create a fixit floppy ##==--
687#
688release.10:
689	@echo "Making fixit floppy."
690	@rm -rf ${RD}/fixitfd
691	@mkdir ${RD}/fixitfd
692	@cd ${RD}/fixitfd && \
693		mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
694		usr/share/misc
695	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=fixit \
696		DIR=${RD}/fixitfd/stand ZIP=false
697	@( cd ${RD}/fixitfd/dev && \
698		cp ${RD}/trees/base/dev/MAKEDEV MAKEDEV && \
699		chmod 755 MAKEDEV)
700	@cp ${RD}/trees/base/etc/spwd.db ${RD}/trees/base/etc/group \
701		${RD}/trees/base/etc/protocols ${RD}/fixitfd/etc
702	@cp ${RD}/trees/base/usr/share/misc/scsi_modes \
703		${RD}/fixitfd/usr/share/misc
704	@cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
705	@cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
706	@cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
707	@chmod 555 ${RD}/fixitfd/stand/tar
708	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/fixit.flp ${RD} \
709		${MNT} ${FIXITSIZE} ${RD}/fixitfd ${FIXITINODE} ${FIXITLABEL}
710# Do our last minute floppies directory setup in a convenient place.
711.if !defined(NODOC)
712	@cp ${RND}/${RELNOTES_LANG}/installation/${TARGET}/article.txt \
713		${RD}/floppies/README.TXT
714	@(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5)
715.else
716	@(cd ${RD}/floppies; md5 *.flp > CHECKSUM.MD5)
717.endif
718	touch release.10
719
720#
721# --==## Setup a suitable ftp-area ##==--
722#
723ftp.1:
724	@echo "Setting up FTP distribution area"
725	@mkdir -p ${FD}
726	-@ln -s . ${FD}/${BUILDNAME}
727	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
728	@cd ${RD}/dists && find . -print | cpio -dumpl ${FD}
729.if !defined(NODOC)
730	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
731	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
732	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
733	done
734	@for i in ${DIST_DOCS_ARCH_DEP}; do \
735	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
736	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
737	done
738	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${FD}
739	@mv ${FD}/INSTALLATION.TXT ${FD}/INSTALL.TXT
740	@mv ${FD}/INSTALLATION.HTM ${FD}/INSTALL.HTM
741.endif
742	@echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
743.if !defined(NOPORTS)
744	@tar --exclude CVS -cBf - -C ${CD_DISC1} ports | tar -xBf - -C ${FD}
745.endif
746	touch ftp.1
747
748#
749# --==## Setup a suitable cdrom-area ##==--
750#
751cdrom.1:
752	@echo "Setting up CDROM distribution area"
753	@mkdir -p ${CD_DISC1} ${CD_DISC2}
754	@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1}
755	@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1}
756	@for i in ${DISTRIBUTIONS} ; \
757	do \
758		if [ -d ${RD}/trees/$${i} ] ; then \
759			chflags -R noschg ${RD}/trees/$${i} || true ; \
760			( cd ${RD}/trees/$${i} && \
761			find . -depth -print | cpio -dumpl ${CD_DISC2} ) ; \
762		fi \
763	done
764	@rm -f ${CD_DISC2}/.profile
765	@cp ${.CURDIR}/fixit.profile ${CD_DISC2}/.profile
766	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
767	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
768.if !defined(NODOC)
769	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
770	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
771	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
772	done
773	@for i in ${DIST_DOCS_ARCH_DEP}; do \
774	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
775	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
776	done
777	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DISC1}
778	@mv ${CD_DISC1}/INSTALLATION.TXT ${CD_DISC1}/INSTALL.TXT
779	@mv ${CD_DISC1}/INSTALLATION.HTM ${CD_DISC1}/INSTALL.HTM
780.endif
781.if ${TARGET} != "pc98"
782	@echo "Setting up /boot"
783	@cp -Rp ${CD_DISC2}/boot ${CD_DISC1}
784	@ln -f ${RD}/image.boot/mfsroot.gz ${CD_DISC1}/boot/mfsroot.gz
785	@ln -f ${CD_DISC1}/boot/mfsroot.gz ${CD_DISC2}/boot/mfsroot.gz
786	@echo 'mfsroot_load="YES"' > ${CD_DISC1}/boot/loader.conf
787	@echo 'mfsroot_type="mfs_root"' >> ${CD_DISC1}/boot/loader.conf
788	@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_DISC1}/boot/loader.conf
789	@ln -f ${CD_DISC1}/boot/loader.conf ${CD_DISC2}/boot/loader.conf
790.endif
791.if ${TARGET} == "i386"
792	@mkdir -p ${CD_DISC2}/floppies
793	@cp ${CD_DISC1}/floppies/boot.flp ${CD_DISC2}/floppies
794.endif
795.if !defined(NOPORTS)
796	@mkdir -p ${CD_DISC1}/ports && \
797	  tar --exclude CVS --exclude 'ports/distfiles/*' -czf \
798	  ${CD_DISC1}/ports/ports.tgz -C /usr ports && \
799	  cp ${.CURDIR}/scripts/ports-install.sh ${CD_DISC1}/ports/install.sh \
800	  && (cd ${CD_DISC1}/ports; md5 * > CHECKSUM.MD5)
801.endif
802	touch cdrom.1
803
804iso.1:
805	@if [ -r ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ]; then \
806		echo "Creating ISO images..."; \
807		sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
808		  fbsd_miniinst ${CD}/miniinst.iso ${CD_DISC1}; \
809		sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
810		  fbsd_livefs ${CD}/disc2.iso ${CD_DISC2}; \
811		if [ "x${CD_EXTRA_BITS}" != "x" ]; then \
812			sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
813			  fbsd_boot ${CD}/disc1.iso ${CD_DISC1} ${CD_EXTRA_BITS}; \
814			    && false; \
815		fi \
816	else \
817		echo "Do not know how to create an ISO for ${TARGET_ARCH}."; \
818	fi
819	touch iso.1
820
821#
822# --==## Documentation Project files such as the Handbook and FAQ ##==--
823#
824doc.1:
825	@echo "Making docs..."
826	@for i in ${DOCPORTS}; do \
827	  cd /usr/ports/$$i && make all install clean BATCH=yes JADETEX=no WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \
828	done
829	@cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/base/usr/share/doc
830	touch doc.1
831
832#
833# --==## RELNOTESng:  Next-generation replacements for *.TXT files ##==--
834#
835doc.2:
836	@echo "Making release documentation..."
837	@cd ${.CURDIR}/doc && make all install clean 'FORMATS=html txt' INSTALL_COMPRESSED='' DOCDIR=${RND}
838	touch doc.2
839
840# Various "subroutine" and other supporting targets.
841
842# RD=
843# SD=
844# TD=
845# ARG=
846doTARBALL:
847.if !defined(SD)
848	@echo "SD undefined in doTARBALL" && exit 1
849.endif
850.if !defined(TD)
851	@echo "TD undefined in doTARBALL" && exit 1
852.endif
853.if !defined(ARG)
854	@echo "ARG undefined in doTARBALL" && exit 1
855.endif
856	@rm -rf ${RD}/dists/${TD}/${TN}*
857	@mkdir -p ${RD}/dists/${TD}
858	@( cd ${SD} && \
859		tn=`echo ${TN} | tr '[A-Z]' '[a-z]' | cut -c1-8` && \
860		echo rolling ${TD}/$$tn tarball &&\
861		tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
862		${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \
863		sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn > \
864		   ${RD}/dists/${TD}/$$tn.inf && \
865		if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \
866		  cp -p ${.CURDIR}/scripts/$${TD}-install.sh ${RD}/dists/${TD}/install.sh; \
867		fi && \
868		if [ "${SD}" != "/usr/src" ]; then \
869			mtree -c -i -p ${SD}/${ARG} \
870			  -k gname,md5digest,mode,nlink,uname,size,link,type \
871			  > ${RD}/dists/${TD}/$$tn.mtree ; \
872		else \
873			true; \
874		fi; \
875		(cd ${RD}/dists/${TD}; \
876		   rm -f CHECKSUM.MD5; \
877		   md5 * > CHECKSUM.MD5) \
878	)
879
880doRELEASE:  release.1 release.2 release.3 ${DOCREL} release.4 release.5 \
881		release.6 release.7 release.8 release.9 release.10
882	@cd ${.CURDIR} && ${MAKE} ${EXTRAS}
883	@echo "Release done"
884
885floppies:
886	@cd ${.CURDIR} && ${MAKE} boot.flp
887	@cd ${.CURDIR} && ${MAKE} fixit.flp
888	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
889
890boot.flp:
891	@rm -f release.5 release.9
892	@cd ${.CURDIR} && ${MAKE} release.5 release.9 CRUNCH_TARGETS=boot
893
894fixit.flp:
895	@rm -f release.5 release.10
896	@cd ${.CURDIR} && ${MAKE} release.5 release.10 CRUNCH_TARGETS=fixit
897
898installCRUNCH:
899.if !defined(CRUNCH)
900	@echo "CRUNCH undefined in installCRUNCH" && exit 1
901.endif
902.if !defined(DIR)
903	@echo "DIR undefined in installCRUNCH" && exit 1
904.endif
905.if !defined(ZIP)
906	@echo "ZIP undefined in installCRUNCH" && exit 1
907.endif
908	@if ${ZIP} ; then \
909		gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \
910	else \
911		ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \
912	fi
913	@chmod 555 ${DIR}/${CRUNCH}_crunch
914	@if [ -f ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf ] ; then \
915		for i in `crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \
916			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
917		done \
918	else \
919		for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
920			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
921		done \
922	fi
923
924#
925# --==## Put a filesystem into a BOOTMFS kernel ##==--
926#
927doMFSKERN:
928	@echo "Running ${.TARGET} for ${FSIMAGE}"
929	@rm -f ${RD}/kernels/BOOTMFS ${RD}/kernels/BOOTMFS.${FSIMAGE}
930	@cd ${.CURDIR}/../sys/${TARGET}/conf && \
931	    sh ${.CURDIR}/${TARGET_ARCH}/dokern.sh ${FDSIZE} < GENERIC > BOOTMFS && \
932	    [ -r GENERIC.hints ] && cp GENERIC.hints BOOTMFS.hints
933.if exists(${.CURDIR}/${TARGET}/drivers.conf)
934	@awk -f ${.CURDIR}/scripts/driver-remove.awk \
935		${.CURDIR}/${TARGET}/drivers.conf \
936		${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS
937.endif
938	cd ${.CURDIR}/..; \
939	KERNEL_KO=BOOTMFS KODIR= \
940	    ${CROSSMAKE} ${KERNEL_FLAGS} -DNO_WERROR -DNO_MODULES -DNO_KERNELCLEAN \
941	    KERNCONF=BOOTMFS buildkernel reinstallkernel \
942	    DESTDIR=${RD}/kernels
943	[ -r ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS.hints ] && \
944	cp ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS.hints ${RD}/kernels
945	@rm -rf ${RD}/image.${FSIMAGE}
946	@mkdir ${RD}/image.${FSIMAGE}
947	@cd ${RD}/kernels && \
948	  (chflags noschg BOOTMFS || true) && \
949	  ${WMAKEENV} strip BOOTMFS && \
950	  cp BOOTMFS BOOTMFS.${FSIMAGE} && \
951	  [ -r BOOTMFS.hints ] && mv BOOTMFS.hints BOOTMFS.${FSIMAGE}.hints
952	mv ${RD}/kernels/BOOTMFS ${RD}/image.${FSIMAGE}/kernel
953	@echo "Setting up /boot directory for ${FSIMAGE} floppy"
954	@mkdir -p ${RD}/image.${FSIMAGE}/boot
955.if ${TARGET} == "i386"
956	@kgzip -vo ${RD}/image.${FSIMAGE}/boot/loader /boot/loader
957.else
958	@cp /boot/loader ${RD}/image.${FSIMAGE}/boot
959.endif
960	@[ -r ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints ] && \
961	  sed -e '/^hint/s/^/set /' -e '/^#/d' \
962	    ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints > \
963	    ${RD}/image.${FSIMAGE}/boot/device.hints && \
964	  echo "include /boot/device.hints" > ${RD}/image.${FSIMAGE}/boot/loader.rc
965	@echo "load /kernel" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
966.if !defined(FDSIZE) || ${FDSIZE} != "BIG"
967	@echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
968	@echo "echo Please insert MFS root floppy and press enter:" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
969	@echo "read" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
970.endif
971	@echo "load -t mfs_root /mfsroot" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
972	@echo "set hint.acpi.0.disable=1" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
973	@echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
974	@echo "autoboot 10" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
975.if ${TARGET_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT}
976	@echo "-P" >> ${RD}/image.${FSIMAGE}/boot.config
977.endif
978	@gzip -9v ${RD}/image.${FSIMAGE}/kernel
979	@rm -f ${RD}/floppies/${FSIMAGE}.flp
980.if defined(FDSIZE) && ${FDSIZE} == "BIG"
981	@cp mfsroot.gz ${RD}/image.${FSIMAGE}
982	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
983		${RD} ${MNT} ${BIGBOOTSIZE} ${RD}/image.${FSIMAGE} \
984		${BOOTINODE} ${BIGBOOTLABEL}
985.elif defined(FDSIZE) && ${FDSIZE} == "SMALL"
986	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
987		${RD} ${MNT} ${SMALLBOOTSIZE} ${RD}/image.${FSIMAGE} \
988		${BOOTINODE} ${SMALLBOOTLABEL}
989.else
990	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
991		${RD} ${MNT} ${BOOTSIZE} ${RD}/image.${FSIMAGE} \
992		${BOOTINODE} ${BOOTLABEL}
993.endif
994	@echo "Created ${RD}/floppies/${FSIMAGE}.flp"
995
996.include <bsd.prog.mk>
997