Makefile revision 96586
1# $FreeBSD: head/release/Makefile 96586 2002-05-14 13:45:50Z ru $
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.8' 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 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	# Don't remove this, or the build will fall over!
388	echo "export RELEASEDIR=${_R}"		>> ${CHROOTDIR}/mk
389	echo "export PATH=$${PATH}:${LOCALDIR}"	>> ${CHROOTDIR}/mk
390	echo "export TMPDIR=/tmp"		>> ${CHROOTDIR}/mk
391	echo "export MAKEOBJDIRPREFIX=/usr/obj"	>> ${CHROOTDIR}/mk
392	echo "export MANBUILDCAT=YES"		>> ${CHROOTDIR}/mk
393	echo "if [ ! -f /tmp/.world_done ]; then" >> ${CHROOTDIR}/mk
394	echo "	cd /usr/src"			>> ${CHROOTDIR}/mk
395	echo "	${CROSSMAKE} ${WORLD_FLAGS} -DNOCLEAN buildworld && \\" >> ${CHROOTDIR}/mk
396	echo "	touch /tmp/.world_done"		>> ${CHROOTDIR}/mk
397	echo "fi"				>> ${CHROOTDIR}/mk
398	echo "cd /usr/src/release"		>> ${CHROOTDIR}/mk
399	echo "make obj"				>> ${CHROOTDIR}/mk
400	echo "make \$${_RELTARGET}"		>> ${CHROOTDIR}/mk
401	echo "echo \">>> make ${.TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${CHROOTDIR}/mk
402	chmod 755 ${CHROOTDIR}/mk
403	chroot ${CHROOTDIR} /mk
404
405clean:
406	rm -rf boot_crunch release.[0-9]
407
408# Clean out ${_R} and make the directory structure.
409release.1:
410	mkdir -p ${_R}
411	-rm -rf ${_R}/* 2> /dev/null
412	-chflags -R noschg ${_R}/.
413	rm -rf ${_R}/*
414	mkdir ${RD}
415	mkdir ${RD}/floppies
416	mkdir ${RD}/trees
417	mkdir ${RD}/kernels
418	for i in ${DISTRIBUTIONS} ; do \
419		mkdir ${RD}/trees/$$i && \
420		mtree -deU -f ${MTREEFILES}/BSD.root.dist \
421		    -p ${RD}/trees/$$i > /dev/null && \
422		mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
423		    -p ${RD}/trees/$$i/usr > /dev/null && \
424		mtree -deU -f ${MTREEFILES}/BSD.include.dist \
425		    -p ${RD}/trees/$$i/usr/include > /dev/null && \
426		mtree -deU -f ${MTREEFILES}/BSD.var.dist \
427		    -p ${RD}/trees/$$i/var > /dev/null ; \
428	done
429	touch release.1
430
431# Install the system into the various distributions.
432release.2:
433	cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/trees/base
434	cd ${.CURDIR}/.. && ${CROSSMAKE} distributeworld DISTDIR=${RD}/trees
435	# Handle some grief caused by the munition braindeadness.
436	cd ${.CURDIR}/..; \
437	${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DNOCRYPT \
438	    SUBDIR_OVERRIDE="${FIXCRYPTO}" \
439	    buildworld distributeworld DISTDIR=${RD}/trees
440.if exists(${.CURDIR}/../kerberosIV) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
441	cd ${.CURDIR}/..; \
442	${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DMAKE_KERBEROS4 \
443	    SUBDIR_OVERRIDE="kerberosIV ${K4PROGS}" \
444	    buildworld distributeworld DISTDIR=${RD}/trees
445.endif
446.if exists(${.CURDIR}/../kerberos5) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
447	cd ${.CURDIR}/..; \
448	${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DMAKE_KERBEROS5 \
449	    SUBDIR_OVERRIDE="kerberos5 ${K5PROGS}" \
450	    buildworld distributeworld DISTDIR=${RD}/trees
451.endif
452	-chflags -R noschg ${RD}/trees
453	touch release.2
454
455# Make and install the generic kernel(s).
456release.3:
457.for kernel in ${KERNELS}
458	cd ${.CURDIR}/..; \
459	${CROSSMAKE} ${KERNEL_FLAGS} -DNO_WERROR -DNO_MODULES \
460	    KERNCONF=${kernel} INSTKERNNAME=${kernel} kernel \
461	    DESTDIR=${RD}/trees/base
462.endfor
463	# Install a standard boot kernel+modules.
464	cd ${.CURDIR}/..; \
465	${CROSSMAKE} ${KERNEL_FLAGS} -DNO_WERROR \
466	    kernel \
467	    DESTDIR=${RD}/trees/base; \
468	cd ${.CURDIR}/..; \
469	${CROSSMAKE} ${KERNEL_FLAGS} -DNO_MODULES \
470	    reinstallkernel -DINSTALL_DEBUG \
471	    DESTDIR=${RD}/trees/base
472	touch release.3
473
474# Make and install the three crunched binaries which live on the floppies.
475# You are not supposed to like this :-)
476release.4:
477	rm -rf ${RD}/crunch
478	mkdir -p ${RD}/crunch
479.for j in ${CRUNCH_TARGETS}
480	rm -rf ${j}_crunch
481	mkdir ${j}_crunch
482.if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf)
483	cd ${j}_crunch; ${WMAKEENV} crunchgen ${.CURDIR}/${TARGET}/${j}_crunch.conf
484.else
485	cd ${j}_crunch; ${WMAKEENV} crunchgen ${.CURDIR}/${j}_crunch.conf
486.endif
487	cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean
488	cd ${.CURDIR}/..; ${TMAKE} build-tools
489	cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk all
490	mv ${j}_crunch/${j}_crunch ${RD}/crunch/${j}
491.endfor
492	touch release.4
493
494#
495# --==## Fix up the distributions. ##==--
496#
497release.5:
498	# Create any "synthetic dists" now.
499	@for i in ${DISTRIBUTIONS}; do \
500		if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
501			echo -n "Running $$i dist creation script... "; \
502			env OBJFORMAT=${OBJFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
503			echo "Done."; \
504		fi \
505	done \
506
507	# Remove all the directories we don't need.
508	-cd ${RD}/trees && \
509		find ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} -depth -type d -print | xargs rmdir
510	touch release.5
511
512#
513# --==## Package up the tarballs from assembled trees ##==--
514#
515release.6:
516	rm -rf ${RD}/dists
517	mkdir -p ${RD}/dists
518	@for i in ${DISTRIBUTIONS} ; \
519	do \
520		if [ -d ${RD}/trees/$${i} ] ; then \
521			cd ${.CURDIR} && $(MAKE) doTARBALL \
522				SD=${RD}/trees/$${i} \
523				TN=$$i TD=$$i ARG="." && \
524			echo "$${i} distribution is finished."; \
525		fi ; \
526	done
527	# More munition braindeadness.
528	( cd ${RD}/dists && \
529		if [ -f krb4/krb4.aa ] ; then \
530			mv krb4/krb4.* crypto && \
531			cat krb4/CHECKSUM.MD5 >> crypto/CHECKSUM.MD5 && \
532			rm -r krb4; \
533		fi )
534	( cd ${RD}/dists && \
535		if [ -f krb5/krb5.aa ] ; then \
536			mv krb5/krb5.* crypto && \
537			cat krb5/CHECKSUM.MD5 >> crypto/CHECKSUM.MD5 && \
538			rm -r krb5; \
539		fi )
540	touch release.6
541
542
543#
544# --==## Make source dists ##==--
545#
546release.7:
547.if !defined(NOSRC)
548	@cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \
549		TD=src TN=sbase ARG="[A-Z]*"
550	@for i in `cd /usr/src && echo [a-z]*` ; do \
551		if [ -d /usr/src/$$i ] ; then \
552			cd ${.CURDIR} && $(MAKE) doTARBALL \
553				TN=`echo s$$i | tr -d '.' | \
554				    sed -e 's/usr/u/' \
555					-e 's/kerberosIV/krb4/' \
556					-e 's/kerberos5/krb5/'` \
557				SD=/usr/src TD=src ARG="$$i" ; \
558		fi ; \
559	done
560.if defined(EXTRA_SRC)
561	@set ${EXTRA_SRC} && \
562	while [ $$# -ge 2 ] ; do \
563		if [ -d /usr/src/$$1 ] ; then \
564			cd ${.CURDIR} && $(MAKE) doTARBALL \
565				SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \
566		fi && shift && shift ; \
567	done
568.endif
569	if [ -d ${RD}/dists/crypto ] ; then ( cd ${RD}/dists/src && \
570		if [ -f ssecure.aa ] ; then mv ssecure.* ../crypto ; fi && \
571		if [ -f scrypto.aa ] ; then mv scrypto.* ../crypto ; fi && \
572		if [ -f skrb4.aa ] ; then mv skrb4.* ../crypto ; fi && \
573		if [ -f skrb5.aa ] ; then mv skrb5.* ../crypto ; fi ; \
574		cd ${RD}/dists/crypto; rm -f CHECKSUM.MD5; \
575		md5 * > CHECKSUM.MD5 ) ; fi
576	(cd ${RD}/dists/src; rm -f CHECKSUM.MD5; md5 * > CHECKSUM.MD5)
577	@echo "src distribution is finished."
578.endif
579	touch release.7
580
581# Complete the bootfd
582#
583# Now, just to get this picture down once and for all:
584#
585# +------------------------------------------------------------------------+
586# |boot.flp                                                                |
587# +-----+-----+------------------------------------------------------------+
588# |boot1|boot2|floppy filesystem "bootfd"                                  |
589# +-----+-----+-+----------------------+---------------------------------+-+
590#               |kernel.gz             |mfsroot.gz                       |
591#               +----------------------+---------------------------------+
592#
593
594release.8:
595	rm -rf ${RD}/mfsfd
596	mkdir ${RD}/mfsfd
597	cd ${RD}/mfsfd && \
598		mkdir -p etc/defaults dev mnt stand/help
599	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \
600		DIR=${RD}/mfsfd/stand ZIP=false
601	( cd ${RD}/trees/base/dev && \
602		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 | \
603	cpio -dump ${RD}/mfsfd/dev )
604	( cd ${RD}/mfsfd/dev && rm -f *[swo]d*[bdefgh] )
605	( cd ${RD}/mfsfd && \
606	  for dir in bin sbin ; do \
607		ln -sf /stand $$dir; \
608	  done )
609	cp /sbin/dhclient-script ${RD}/mfsfd/stand
610.if ${TARGET_ARCH} == "i386"
611	cp ${.CURDIR}/../etc/defaults/pccard.conf ${RD}/mfsfd/etc/defaults/pccard.conf
612.endif
613	cp ${.CURDIR}/../etc/usbd.conf ${RD}/mfsfd/etc/usbd.conf
614	cd ${RD}/trees/base && ls ${BOOT1} | cpio -dump ${RD}/mfsfd/stand
615	( for F in netconfig protocols ; do \
616		sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
617		${RD}/trees/base/etc/$$F > ${RD}/mfsfd/stand/etc/$$F ; \
618	  done )
619	grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
620	    ${RD}/trees/base/etc/services | \
621	    sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
622	    > ${RD}/mfsfd/stand/etc/services
623	ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services
624	ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig
625	gzip -9c ${RD}/trees/base/COPYRIGHT > ${RD}/mfsfd/stand/help/COPYRIGHT.hlp.gz
626.if !defined(NODOC)
627	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
628	  gzip -9c ${RND}/${RELNOTES_LANG}/$$i/article.txt > ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT.gz; \
629	done
630	@for i in ${DIST_DOCS_ARCH_DEP}; do \
631	  gzip -9c ${RND}/${RELNOTES_LANG}/$$i/${TARGET_ARCH}/article.txt > ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT.gz; \
632	done
633	@mv ${RD}/mfsfd/stand/help/INSTALLATION.TXT.gz ${RD}/mfsfd/stand/help/INSTALL.TXT.gz
634.endif
635	-test -f ${.CURDIR}/install.cfg && cp ${.CURDIR}/install.cfg ${RD}/mfsfd
636	@mkdir -p ${RD}/mfsfd/boot
637	@cp ${RD}/trees/base/boot/boot* ${RD}/mfsfd/boot
638.if ${TARGET} == "i386"
639	@cp ${RD}/trees/base/boot/mbr ${RD}/mfsfd/boot
640.endif
641	@cp ${RD}/trees/base/boot/loader.help ${RD}/mfsfd/boot
642	@cd ${.CURDIR}/../sys/${TARGET}/conf && \
643	    sh ${.CURDIR}/${TARGET_ARCH}/dokern.sh ${FDSIZE} < GENERIC > BOOTMFS && \
644	    [ -r GENERIC.hints ] && cp GENERIC.hints BOOTMFS.hints
645.if exists(${.CURDIR}/${TARGET}/drivers.conf)
646	@perl ${.CURDIR}/scripts/driver-remove.pl \
647		${.CURDIR}/${TARGET}/drivers.conf \
648		${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS
649	@mkdir -p ${RD}/mfsfd/stand/modules
650	@perl ${.CURDIR}/scripts/driver-copy2.pl \
651	    ${.CURDIR}/${TARGET}/drivers.conf \
652	    ${RD}/trees/base/boot/kernel ${RD}/mfsfd/stand/modules
653.endif
654	@echo "Making the regular boot floppy."
655	@tar --exclude CVS -cf - -C ${.CURDIR}/../usr.sbin/sysinstall help | \
656		tar xf - -C ${RD}/mfsfd/stand
657	@echo "Compressing doc files..."
658	@gzip -9 ${RD}/mfsfd/stand/help/*.hlp
659.if ${TARGET_ARCH} == "alpha"
660	rm -rf ${RD}/mfsfd/stand/help/*
661.endif
662	sh -e ${.CURDIR}/scripts/doFS.sh -s mfsroot ${RD} ${MNT} \
663		${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL}
664	@gzip -9vc mfsroot > mfsroot.gz
665.if ${TARGET} == "pc98"
666	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \
667		${RD} ${MNT} ${SMALLBOOTSIZE} mfsroot.gz \
668		${BOOTINODE} ${SMALLBOOTLABEL}
669	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern-small FDSIZE=SMALL
670	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern
671.else
672	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \
673		${RD} ${MNT} ${BOOTSIZE} mfsroot.gz ${BOOTINODE} ${BOOTLABEL}
674	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern
675	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot FDSIZE=BIG
676.endif
677	@rm mfsroot mfsroot.gz
678	@echo "Regular and MFS boot floppies made."
679	touch release.8
680
681#
682# --==## Create a fixit floppy ##==--
683#
684release.9:
685	@echo "Making fixit floppy."
686	@rm -rf ${RD}/fixitfd
687	@mkdir ${RD}/fixitfd
688	@cd ${RD}/fixitfd && \
689		mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
690		usr/share/misc
691	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=fixit \
692		DIR=${RD}/fixitfd/stand ZIP=false
693	@( cd ${RD}/fixitfd/dev && \
694		cp ${RD}/trees/base/dev/MAKEDEV MAKEDEV && \
695		chmod 755 MAKEDEV)
696	@cp ${RD}/trees/base/etc/spwd.db ${RD}/trees/base/etc/group \
697		${RD}/trees/base/etc/protocols ${RD}/fixitfd/etc
698	@cp ${RD}/trees/base/usr/share/misc/scsi_modes \
699		${RD}/fixitfd/usr/share/misc
700	@cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
701	@cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
702	@cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
703	@chmod 555 ${RD}/fixitfd/stand/tar
704	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/fixit.flp ${RD} \
705		${MNT} ${FIXITSIZE} ${RD}/fixitfd ${FIXITINODE} ${FIXITLABEL}
706# Do our last minute floppies directory setup in a convenient place.
707.if !defined(NODOC)
708	@cp ${RND}/${RELNOTES_LANG}/installation/${TARGET_ARCH}/article.txt \
709		${RD}/floppies/README.TXT
710	@(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5)
711.else
712	@(cd ${RD}/floppies; md5 *.flp > CHECKSUM.MD5)
713.endif
714	touch release.9
715
716#
717# --==## Setup a suitable ftp-area ##==--
718#
719ftp.1:
720	@echo "Setting up FTP distribution area"
721	@mkdir -p ${FD}
722	-@ln -s . ${FD}/${BUILDNAME}
723	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
724	@cd ${RD}/dists && find . -print | cpio -dumpl ${FD}
725.if !defined(NODOC)
726	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
727	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
728	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
729	done
730	@for i in ${DIST_DOCS_ARCH_DEP}; do \
731	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET_ARCH}/article.txt ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
732	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET_ARCH}/article.html ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
733	done
734	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${FD}
735	@mv ${FD}/INSTALLATION.TXT ${FD}/INSTALL.TXT
736	@mv ${FD}/INSTALLATION.HTM ${FD}/INSTALL.HTM
737.endif
738	@echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
739.if !defined(NOPORTS)
740	@tar --exclude CVS -cBf - -C ${CD_DISC1} ports | tar -xBf - -C ${FD}
741.endif
742	touch ftp.1
743
744#
745# --==## Setup a suitable cdrom-area ##==--
746#
747cdrom.1:
748	@echo "Setting up CDROM distribution area"
749	@mkdir -p ${CD_DISC1} ${CD_DISC2}
750	@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1}
751	@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1}
752	@for i in ${DISTRIBUTIONS} ; \
753	do \
754		if [ -d ${RD}/trees/$${i} ] ; then \
755			chflags -R noschg ${RD}/trees/$${i} || true ; \
756			( cd ${RD}/trees/$${i} && \
757			find . -depth -print | cpio -dumpl ${CD_DISC2} ) ; \
758		fi \
759	done
760	@rm -f ${CD_DISC2}/.profile
761	@cp ${.CURDIR}/fixit.profile ${CD_DISC2}/.profile
762	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
763	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
764.if !defined(NODOC)
765	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
766	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
767	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
768	done
769	@for i in ${DIST_DOCS_ARCH_DEP}; do \
770	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET_ARCH}/article.txt ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
771	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET_ARCH}/article.html ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
772	done
773	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DISC1}
774	@mv ${CD_DISC1}/INSTALLATION.TXT ${CD_DISC1}/INSTALL.TXT
775	@mv ${CD_DISC1}/INSTALLATION.HTM ${CD_DISC1}/INSTALL.HTM
776.endif
777.if ${TARGET} != "pc98"
778	@echo "Setting up /boot"
779	@cp -Rp ${CD_DISC2}/boot ${CD_DISC1}
780	@ln -f ${RD}/image.boot/mfsroot.gz ${CD_DISC1}/boot/mfsroot.gz
781	@ln -f ${CD_DISC1}/boot/mfsroot.gz ${CD_DISC2}/boot/mfsroot.gz
782	@echo 'mfsroot_load="YES"' > ${CD_DISC1}/boot/loader.conf
783	@echo 'mfsroot_type="mfs_root"' >> ${CD_DISC1}/boot/loader.conf
784	@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_DISC1}/boot/loader.conf
785	@ln -f ${CD_DISC1}/boot/loader.conf ${CD_DISC2}/boot/loader.conf
786.endif
787.if ${TARGET} == "i386"
788	@mkdir -p ${CD_DISC2}/floppies
789	@cp ${CD_DISC1}/floppies/boot.flp ${CD_DISC2}/floppies
790.endif
791.if !defined(NOPORTS)
792	@mkdir -p ${CD_DISC1}/ports && \
793	  tar --exclude CVS --exclude 'ports/distfiles/*' -czf \
794	  ${CD_DISC1}/ports/ports.tgz -C /usr ports && \
795	  cp ${.CURDIR}/scripts/ports-install.sh ${CD_DISC1}/ports/install.sh \
796	  && (cd ${CD_DISC1}/ports; md5 * > CHECKSUM.MD5)
797.endif
798	touch cdrom.1
799
800iso.1:
801	@if [ -r ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ]; then \
802		echo "Creating ISO images..."; \
803		sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
804		  fbsd_miniinst ${CD}/miniinst.iso ${CD_DISC1}; \
805		sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
806		  fbsd_livefs ${CD}/disc2.iso ${CD_DISC2}; \
807		if [ "x${CD_EXTRA_BITS}" != "x" ]; then \
808			sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
809			  fbsd_boot ${CD}/disc1.iso ${CD_DISC1} ${CD_EXTRA_BITS}; \
810			    && false; \
811		fi \
812	else \
813		echo "Do not know how to create an ISO for ${TARGET_ARCH}."; \
814	fi
815	touch iso.1
816
817#
818# --==## Documentation Project files such as the Handbook and FAQ ##==--
819#
820doc.1:
821	@echo "Making docs..."
822	@for i in ${DOCPORTS}; do \
823	  cd /usr/ports/$$i && make all install clean BATCH=yes JADETEX=no FORCE_PKG_REGISTER=yes; \
824	done
825	@cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/base/usr/share/doc
826	touch doc.1
827
828#
829# --==## RELNOTESng:  Next-generation replacements for *.TXT files ##==--
830#
831doc.2:
832	@echo "Making release documentation..."
833	@cd ${.CURDIR}/doc && make all install clean 'FORMATS=html txt' INSTALL_COMPRESSED='' DOCDIR=${RND}
834	touch doc.2
835
836# Various "subroutine" and other supporting targets.
837
838# RD=
839# SD=
840# TD=
841# ARG=
842doTARBALL:
843.if !defined(SD)
844	@echo "SD undefined in doTARBALL" && exit 1
845.endif
846.if !defined(TD)
847	@echo "TD undefined in doTARBALL" && exit 1
848.endif
849.if !defined(ARG)
850	@echo "ARG undefined in doTARBALL" && exit 1
851.endif
852	@rm -rf ${RD}/dists/${TD}/${TN}*
853	@mkdir -p ${RD}/dists/${TD}
854	@( cd ${SD} && \
855		tn=`echo ${TN} | tr '[A-Z]' '[a-z]' | cut -c1-8` && \
856		echo rolling ${TD}/$$tn tarball &&\
857		tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
858		${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \
859		sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn > \
860		   ${RD}/dists/${TD}/$$tn.inf && \
861		if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \
862		  cp -p ${.CURDIR}/scripts/$${TD}-install.sh ${RD}/dists/${TD}/install.sh; \
863		fi && \
864		if [ "${SD}" != "/usr/src" ]; then \
865			mtree -c -i -p ${SD}/${ARG} \
866			  -k gname,md5digest,mode,nlink,uname,size,link,type \
867			  > ${RD}/dists/${TD}/$$tn.mtree ; \
868		else \
869			true; \
870		fi; \
871		(cd ${RD}/dists/${TD}; \
872		   rm -f CHECKSUM.MD5; \
873		   md5 * > CHECKSUM.MD5) \
874	)
875
876doRELEASE:  release.1 release.2 ${DOCREL} release.3 release.4 release.5 \
877		release.6 release.7 release.8 release.9
878	@cd ${.CURDIR} && ${MAKE} ${EXTRAS}
879	@echo "Release done"
880
881floppies:
882	@cd ${.CURDIR} && ${MAKE} boot.flp
883	@cd ${.CURDIR} && ${MAKE} fixit.flp
884	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
885
886boot.flp:
887	@rm -f release.4 release.8
888	@cd ${.CURDIR} && ${MAKE} release.4 release.8 CRUNCH_TARGETS=boot
889
890fixit.flp:
891	@rm -f release.4 release.9
892	@cd ${.CURDIR} && ${MAKE} release.4 release.9 CRUNCH_TARGETS=fixit
893
894installCRUNCH:
895.if !defined(CRUNCH)
896	@echo "CRUNCH undefined in installCRUNCH" && exit 1
897.endif
898.if !defined(DIR)
899	@echo "DIR undefined in installCRUNCH" && exit 1
900.endif
901.if !defined(ZIP)
902	@echo "ZIP undefined in installCRUNCH" && exit 1
903.endif
904	@if ${ZIP} ; then \
905		gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \
906	else \
907		ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \
908	fi
909	@chmod 555 ${DIR}/${CRUNCH}_crunch
910	@if [ -f ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf ] ; then \
911		for i in `crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \
912			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
913		done \
914	else \
915		for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
916			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
917		done \
918	fi
919
920#
921# --==## Put a filesystem into a BOOTMFS kernel ##==--
922#
923doMFSKERN:
924	@echo "Running ${.TARGET} for ${FSIMAGE}"
925	@rm -f ${RD}/kernels/BOOTMFS ${RD}/kernels/BOOTMFS.${FSIMAGE}
926	cd ${.CURDIR}/..; \
927	KERNEL_KO=BOOTMFS KODIR= \
928	    ${CROSSMAKE} ${KERNEL_FLAGS} -DNO_WERROR -DNO_MODULES -DNO_KERNELCLEAN \
929	    KERNCONF=BOOTMFS buildkernel reinstallkernel \
930	    DESTDIR=${RD}/kernels
931.if exists(${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS.hints)
932	cp ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS.hints ${RD}/kernels
933.endif
934	@rm -rf ${RD}/image.${FSIMAGE}
935	@mkdir ${RD}/image.${FSIMAGE}
936	@cd ${RD}/kernels && \
937	  (chflags noschg BOOTMFS || true) && \
938	  ${WMAKEENV} strip BOOTMFS && \
939	  cp BOOTMFS BOOTMFS.${FSIMAGE} && \
940	  [ -r BOOTMFS.hints ] && mv BOOTMFS.hints BOOTMFS.${FSIMAGE}.hints
941	mv ${RD}/kernels/BOOTMFS ${RD}/image.${FSIMAGE}/kernel
942	@echo "Setting up /boot directory for ${FSIMAGE} floppy"
943	@mkdir -p ${RD}/image.${FSIMAGE}/boot
944.if ${TARGET} == "i386"
945	@kgzip -vo ${RD}/image.${FSIMAGE}/boot/loader /boot/loader
946.else
947	@cp /boot/loader ${RD}/image.${FSIMAGE}/boot
948.endif
949	@[ -r ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints ] && \
950	  sed -e '/^hint/s/^/set /' -e '/^#/d' \
951	    ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints > \
952	    ${RD}/image.${FSIMAGE}/boot/device.hints && \
953	  echo "include /boot/device.hints" > ${RD}/image.${FSIMAGE}/boot/loader.rc
954	@echo "load /kernel" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
955.if !defined(FDSIZE) || ${FDSIZE} != "BIG"
956	@echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
957	@echo "echo Please insert MFS root floppy and press enter:" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
958	@echo "read" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
959.endif
960	@echo "load -t mfs_root /mfsroot" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
961	@echo "set hint.acpi.0.disable=1" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
962	@echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
963	@echo "autoboot 10" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
964.if ${TARGET_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT}
965	@echo "-P" >> ${RD}/image.${FSIMAGE}/boot.config
966.endif
967	@gzip -9v ${RD}/image.${FSIMAGE}/kernel
968	@rm -f ${RD}/floppies/${FSIMAGE}.flp
969.if defined(FDSIZE) && ${FDSIZE} == "BIG"
970	@cp mfsroot.gz ${RD}/image.${FSIMAGE}
971	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
972		${RD} ${MNT} ${BIGBOOTSIZE} ${RD}/image.${FSIMAGE} \
973		${BOOTINODE} ${BIGBOOTLABEL}
974.elif defined(FDSIZE) && ${FDSIZE} == "SMALL"
975	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
976		${RD} ${MNT} ${SMALLBOOTSIZE} ${RD}/image.${FSIMAGE} \
977		${BOOTINODE} ${SMALLBOOTLABEL}
978.else
979	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
980		${RD} ${MNT} ${BOOTSIZE} ${RD}/image.${FSIMAGE} \
981		${BOOTINODE} ${BOOTLABEL}
982.endif
983	@echo "Created ${RD}/floppies/${FSIMAGE}.flp"
984
985.include <bsd.prog.mk>
986