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