Makefile revision 158650
1# $FreeBSD: head/release/Makefile 158650 2006-05-16 14:22:37Z nyan $
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.8' 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=7.0-CURRENT
22#
23# Automatic SNAP versioning:
24DATE != date +%Y%m%d
25BASE = 7.0
26BUILDNAME?=${BASE}-${DATE}-SNAP
27#
28#CHROOTDIR=/junk/release
29# If this is a -stable snapshot, then set
30#RELEASETAG=RELENG_6
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 use a checked-out ports collection directory instead of
39# checking out from a local CVS repository, set this option.
40#EXTPORTSDIR=/usr/ports
41#
42# To add other options to the CVS subcommands (co,up), set
43#CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'"
44#
45# To add other options to the CVS command, set
46#CVSARGS="-lfq"
47#
48# To prefix the cvs command
49#CVSPREFIX="/usr/bin/time"
50#
51# Where the CVS repository is
52#CVSROOT="/home/ncvs"
53#
54# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
55# are building an official release.  Otherwise, we are building for
56# a branch.
57.if defined(RELEASETAG)
58ISRELEASE!=	expr "${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true
59.if ${ISRELEASE} != 0
60# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
61AUXRELEASETAG!=	echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//'
62DOCRELEASETAG?=		${AUXRELEASETAG}
63PORTSRELEASETAG?=	${AUXRELEASETAG}
64.endif
65.endif
66
67# If you want to pass flags to the world build such as -j X, use
68# WORLD_FLAGS.  Similarly, you can specify make flags for kernel
69# builds via KERNEL_FLAGS.
70#WORLD_FLAGS=-j4
71#KERNEL_FLAGS=-j4
72
73TARGET_ARCH?=	${MACHINE_ARCH}
74.if ${TARGET_ARCH} == ${MACHINE_ARCH}
75TARGET?=	${MACHINE}
76.else
77TARGET?=	${TARGET_ARCH}
78.endif
79CROSSENV=	TARGET_ARCH=${TARGET_ARCH} TARGET=${TARGET}
80CROSSMAKE=	${MAKE} ${CROSSENV}
81NATIVEMAKE=	${MAKE} TARGET_ARCH=${MACHINE_ARCH} TARGET=${MACHINE}
82
83# If you are using a local CVS repository with components stored in 
84# non-standard modules, override these on the make commandline or
85# in the environment.
86RELEASESRCMODULE?=	src
87RELEASEDOCMODULE?=	doc
88RELEASEPORTSMODULE?=	ports
89
90# Uncomment this to disable the doc.1 target.  Docs normally require
91# the ports tree, so NOPORTS can be set together with NODOC in order
92# to have neither ports or docs.  If only NOPORTS is set to YES, but
93# docs are still desired, the DOMINIMALDOCPORTS logic below will only
94# install the ports that are minimally required for the docs.  This is
95# intended as a compromise, less disk space is required than for using
96# the entire ports collection (and much less time due to the huge number
97# of directories it would create), but still quite a bit as well as some
98# CPU cycles (some of the programs are C++, and things like ghostscript
99# belong to the required ports nevertheless).
100#
101# Setting this also disables building of release note documentation
102# (RELNOTESng).
103#NODOC=  YES
104#NOPORTS=  YES
105
106# When retrieving ports using the pkg_add -r method, set your proxies to these.
107# src/release/${arch}/mkisoimages.sh can use these.
108#HTTP_PROXY?=	www.example.com
109#FTP_PROXY?=	ftp.example.com
110
111# When creating ISO images, point ${CD_PACKAGE_TREE} to a directory containing
112# the package split by an earlier invocation of the 'package-split' target.
113#CD_PACKAGE_TREE=	/path/to/pkg
114
115# Extra source tarballs; each argument is a pair of source dir and
116# distribution name.  The dist name should not exceed 7 characters
117# (another "s" for "source" will be prepended).
118#EXTRA_SRC=	games/fortune fortune
119
120# Modify this definition if you want the release notes 
121# and other release documentation in a language other than English.
122RELNOTES_LANG?=	en_US.ISO8859-1
123
124# As an alternative to installing the entire ports collection (which
125# can take a huge amount of time, in particular on slower disks),
126# setting ${MINIMALDOCPORTS} allows to install and build just those
127# ports that are really required for getting the docs up & running.
128.if defined(NOPORTS) && !defined(NODOC)
129DOMINIMALDOCPORTS=	YES
130.include "Makefile.inc.docports"
131RELEASEPORTSMODULE=	${MINIMALDOCPORTS}
132.endif
133
134# Helper variable
135.if defined(NOPORTS)
136.if !defined(DOMINIMALDOCPORTS) || ${DOMINIMALDOCPORTS} != "YES"
137NOPORTSATALL=	YES
138.endif
139.endif
140
141#
142# Doing 'make index' in /usr/ports requires Perl.
143MAKEINDEXPORTS=	lang/perl5.8
144# By default, documentation (Handbook, FAQ, etc.) is built for all
145# the languages.  To speed up building, set the DOC_LANG to just
146# the languages you need.  (The language for the release notes is
147# controlled by the RELNOTES_LANG variable above.)
148#DOC_LANG=	en_US.ISO8859-1
149DOCPORTS=	textproc/docproj
150# Set this to wherever the distfiles required by release procedures.
151.if defined(DOCDISTFILES)
152# Respect DOCDISTFILES which is used before.
153RELEASEDISTFILES?=	${DOCDISTFILES}
154.else
155RELEASEDISTFILES?=	${.CURDIR}/../../ports/distfiles
156.endif
157# Set this to 1 if you want -P to be used for automatic keyboard detection
158# on the boot floppy.  WARNING: Breaks on some Athlon (K7) motherboards.
159AUTO_KEYBOARD_DETECT?= 0
160
161.if !defined(NODOC)
162DIST_DOCS_ARCH_INDEP=	readme errata
163DIST_DOCS_ARCH_DEP=	installation relnotes hardware
164.endif
165
166# Things which without too much trouble can be considered variables
167# BASE_DISTS are special in that they get full /etc installation sets.
168#
169OTHER_DISTS?=	catpages manpages games proflibs dict info doc ${ARCH_DISTS}
170BASE_DISTS?=	base
171.if ${TARGET_ARCH} == "amd64"
172ARCH_DISTS?=	lib32
173.endif
174DISTRIBUTIONS?=	${BASE_DISTS} ${OTHER_DISTS}
175
176#
177# Build and package both GENERIC and SMP kernels if the target
178# has both configuration files.  Otherwise only GENERIC is done.
179#
180.if exists(${.CURDIR}/../sys/${TARGET}/conf/SMP)
181KERNELS_BASE?=	GENERIC SMP
182.else
183KERNELS_BASE?=	GENERIC
184.endif
185
186# mountpoint for filesystems.
187MNT=			/mnt
188
189# Various floppy image parameters.
190#
191
192.undef MAKE_FLOPPIES
193.if ${TARGET_ARCH} == "i386"
194MAKE_FLOPPIES=		true
195.if ${TARGET} == "pc98"
196SMALLFLOPPYSIZE=	1200
197SMALLFLOPPYSPLITSIZE=	1152
198SMALLFLOPPYLABEL=	fd1200
199SPLIT_MFSROOT=
200.endif
201FLOPPYSIZE=		1440
202FLOPPYSPLITSIZE=	1392
203FLOPPYINODE=		40000
204FLOPPYLABEL=		fd1440
205BOOTINODE=		80000
206MFSSIZE=		4320
207MFSINODE=		8000
208MFSLABEL=		minimum3
209.elif ${TARGET_ARCH} == "alpha"
210MAKE_FLOPPIES=		true
211FLOPPYSIZE=		1440
212FLOPPYSPLITSIZE=	1392
213FLOPPYINODE=		40000
214FLOPPYLABEL=		fd1440
215BOOTINODE=		80000
216MFSSIZE=		4320
217MFSINODE=		8000
218MFSLABEL=		auto
219SPLIT_MFSROOT=
220.elif ${TARGET_ARCH} == "sparc64"
221DISKLABEL=		sunlabel
222MFSSIZE=		4096
223MFSINODE=		8192
224MFSLABEL=		auto
225MINIROOT=
226.elif ${TARGET_ARCH} == "ia64"
227MFSSIZE=		8192
228MFSINODE=		8192
229MFSLABEL=		auto
230SEPARATE_LIVEFS=
231.elif ${TARGET_ARCH} == "amd64"
232MAKE_FLOPPIES=		true
233FLOPPYSIZE=		1440
234FLOPPYSPLITSIZE=	1392
235FLOPPYINODE=		40000
236FLOPPYLABEL=		fd1440
237BOOTINODE=		80000
238MFSSIZE=		4096
239MFSINODE=		8192
240MFSLABEL=		auto
241SPLIT_MFSROOT=
242.elif ${TARGET_ARCH} == "powerpc"
243DISKLABEL=		""
244MFSSIZE=		4096
245MFSINODE=		8192
246MFSLABEL=		auto
247SEPARATE_LIVEFS=
248.endif
249.if defined(NO_FLOPPIES)
250.undef MAKE_FLOPPIES
251.endif
252
253.if exists(/sbin/bsdlabel)
254DISKLABEL?=		bsdlabel
255.else
256DISKLABEL?=		disklabel
257.endif
258
259ZIPNSPLIT=		gzip --no-name -9 -c | split -b 1392k -
260
261# Things which may get you into trouble if you change them
262MTREEFILES=		${.CURDIR}/../etc/mtree
263_R?=			/R
264RD=			${_R}/stage
265RND=			${RD}/release.doc
266FD=			${_R}/ftp
267CD=			${_R}/cdrom
268CD_BOOT=		${CD}/bootonly
269CD_DISC1=		${CD}/disc1
270CD_DISC2=		${CD}/disc2
271.if defined(SEPARATE_LIVEFS)
272CD_LIVEFS=		${CD}/livefs
273.else
274CD_LIVEFS=		${CD_DISC1}
275.endif
276_MK?=			${CHROOTDIR}/mk
277
278# Where the bootstrap ports (see DOCPORTS) get installed.
279LOCALDIR=		/usr/local/bin
280
281.if ${TARGET} != ${MACHINE} && ${DISKLABEL} == "bsdlabel"
282DOFS_SH=	${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ${TARGET}
283.else
284DOFS_SH=	${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ""
285.endif
286
287CRUNCH_TARGETS=	boot
288.if ${TARGET_ARCH} == "i386"
289CRUNCH_TARGETS+=fixit
290.if ${TARGET} == "pc98"
291CRUNCH_TARGETS+=fixit-small
292.endif
293.endif
294
295.if defined(MAKE_FLOPPIES)
296EXTRAS= floppies.1
297.if ${TARGET_ARCH} == "i386"
298EXTRAS+= floppies.2
299.endif
300EXTRAS+= floppies.3
301.endif
302EXTRAS+= ftp.1
303.if !defined(NOCDROM)
304EXTRAS+= cdrom.1 cdrom.2 cdrom.3
305.if defined(MAKE_ISOS)
306EXTRAS+= iso.1
307.endif
308.if ${TARGET} == "pc98"
309BOOTABLE="-G"
310.else
311BOOTABLE="-b"
312.endif
313.endif
314
315.if !defined(NODOC)
316DOCREL= doc.1 doc.2
317.endif
318
319.if !make(release) && !make(rerelease) && !make(package-split)
320BINMAKE!=	cd ${.CURDIR}/..; ${MAKE} -V BINMAKE
321WMAKEENV!=	cd ${.CURDIR}/..; \
322		${BINMAKE} ${CROSSENV} -f Makefile.inc1 -V WMAKEENV
323WMAKE=		${WMAKEENV} ${BINMAKE}
324.endif
325
326CVS_SRCARGS=	-P
327.if defined(RELEASETAG)
328CVS_SRCARGS+=	-r ${RELEASETAG}
329.endif
330
331CVS_DOCARGS=	-P
332.if defined(DOCRELEASETAG)
333CVS_DOCARGS+=	-r ${DOCRELEASETAG}
334.endif
335
336CVS_PORTSARGS=	-P
337.if defined(PORTSRELEASETAG)
338CVS_PORTSARGS+=	-r ${PORTSRELEASETAG}
339.endif
340
341WORLDDIR?=	${.CURDIR}/..
342
343release rerelease:
344.if !defined(CHROOTDIR) || !defined(BUILDNAME) || !defined(CVSROOT)
345	@echo "To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false
346.endif
347.if defined(NOPORTSATALL) && !defined(NODOC)
348	@echo "Ports are required for building the docs.  Either set NODOC or"
349	@echo "unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!"
350	@exit 1
351.endif
352.if defined(LOCAL_PATCHES) && !empty(LOCAL_PATCHES)
353.for p in ${LOCAL_PATCHES}
354.if !exists(${p})
355	@echo "The patch file ${p} does not exist!"
356	@exit 1
357.endif
358.endfor
359.endif
360.if defined(LOCAL_SCRIPT) && !exists(${LOCAL_SCRIPT})
361	@echo "The local script ${LOCAL_SCRIPT} does not exist!"
362	@exit 1
363.endif
364.if make(release)
365.if exists(${CHROOTDIR})
366# The first command will fail on a handful of files that have their schg
367# flags set.  But it greatly speeds up the next two commands.
368	# NB: clear any vestigial devfs mount, just in case
369	-umount ${CHROOTDIR}/dev > /dev/null 2>&1
370	-rm -rf ${CHROOTDIR} 2>/dev/null
371	-chflags -R 0 ${CHROOTDIR}/.
372	-rm -rf ${CHROOTDIR}
373.endif
374	mkdir -p ${CHROOTDIR}
375	@echo ">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`"
376	cd ${WORLDDIR} && ${NATIVEMAKE} -DWITHOUT_GAMES -DWITHOUT_HTML -DWITHOUT_LIB32 \
377	    -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE installworld DESTDIR=${CHROOTDIR}
378	cd ${WORLDDIR} && ${NATIVEMAKE} distribution DESTDIR=${CHROOTDIR}
379	if [ -f /etc/resolv.conf ]; then \
380		cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \
381	fi
382.if defined(EXTLOCALDIR)
383	rm -rf ${CHROOTDIR}/usr/local
384	cd ${CHROOTDIR}/usr && cp -R -H ${EXTLOCALDIR} local
385.endif
386	rm -rf ${CHROOTDIR}/usr/src
387.if defined(EXTSRCDIR)
388	cd ${CHROOTDIR}/usr && \
389	    cp -R -H ${EXTSRCDIR} src
390.else
391	cd ${CHROOTDIR}/usr && \
392	    ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
393	    co ${CVSCMDARGS} ${CVS_SRCARGS} ${RELEASESRCMODULE}
394.endif
395.if defined(LOCAL_PATCHES) && !empty(LOCAL_PATCHES)
396.for p in ${LOCAL_PATCHES}
397	patch -d ${CHROOTDIR}/usr/${RELEASESRCMODULE} ${PATCH_FLAGS} < ${p}
398.endfor
399.endif
400.if defined(LOCAL_SCRIPT)
401	cd ${CHROOTDIR} && env CHROOTDIR=${CHROOTDIR} BUILDNAME=${BUILDNAME} \
402	    RELEASETAG=${RELEASETAG} ${LOCAL_SCRIPT}
403.endif
404	rm -rf ${CHROOTDIR}/usr/ports
405.if !defined(NOPORTSATALL)
406.if defined(EXTPORTSDIR)
407	cd ${CHROOTDIR}/usr && cp -R -H ${EXTPORTSDIR} ports
408	# If there are distfiles downloaded removing them
409	rm -rf ports/distfiles/*
410.else
411	cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
412	    co ${CVSCMDARGS} ${CVS_PORTSARGS} ${RELEASEPORTSMODULE}
413.endif
414.endif
415.if !defined(NODOC)
416	rm -rf ${CHROOTDIR}/usr/doc
417.if defined(EXTDOCDIR)
418	cd ${CHROOTDIR}/usr && cp -R -H ${EXTDOCDIR} doc
419.else
420	cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
421	    co ${CVSCMDARGS} ${CVS_DOCARGS} ${RELEASEDOCMODULE}
422.endif
423	if [ -d ${RELEASEDISTFILES}/ ]; then \
424		cp -rp ${RELEASEDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \
425	else \
426		mkdir -p ${CHROOTDIR}/usr/ports/distfiles; \
427	fi
428.if !defined(NO_PREFETCHDISTFILES)
429	@cd ${.CURDIR} && ${MAKE} fetch-distfiles
430.endif
431.endif
432.endif
433.if make(rerelease)
434.if !defined(RELEASENOUPDATE)
435.if !defined(RELEASETAG)
436	cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
437	    update ${CVSCMDARGS} -P -d -A
438.else
439	cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
440	    update ${CVSCMDARGS} -P -d -r ${RELEASETAG}
441.endif
442	rm -f ${CHROOTDIR}/tmp/.world_done 
443.if !defined(NOPORTS) && !defined(EXTPORTSDIR)
444	cd ${CHROOTDIR}/usr/ports && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
445	    update ${CVSCMDARGS} -P -d
446	rm -f ${CHROOTDIR}/tmp/.skip_ports_index
447.endif
448.if defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES"
449	for i in ${MINIMALDOCPORTS}; do \
450	    ( cd ${CHROOTDIR}/usr/$$i && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
451		update ${CVSCMDARGS} -P -d ) ; \
452	done
453.endif
454.if !defined(NODOC)
455	cd ${CHROOTDIR}/usr/doc && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
456	    update ${CVSCMDARGS} -P -d
457.endif
458.endif
459.endif
460	# Add version information to those things that need it.
461	if [ ! -f ${CHROOTDIR}/tmp/.world_done ]; then \
462		cd ${CHROOTDIR}/usr/src/sys/conf && \
463		mv newvers.sh foo && \
464		sed "s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo > newvers.sh && \
465		rm foo; \
466	fi
467	-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
468	echo "#!/bin/sh"			> ${_MK}
469	echo "set -ex"				>> ${_MK}
470	echo "trap 'umount /dev || true' 0"	>> ${_MK}
471	echo "_RELTARGET=\$${1:-doRELEASE}"	>> ${_MK}
472.for var in \
473	AUTO_KEYBOARD_DETECT \
474	BUILDNAME \
475	CD_PACKAGE_TREE \
476	DISTRIBUTIONS \
477	DOC_LANG \
478	DOMINIMALDOCPORTS \
479	EXTRA_SRC \
480	FTP_PASSIVE_MODE \
481	FTP_PROXY \
482	HTTP_PROXY \
483	KERNELS \
484	KERNELS_BASE \
485	KERNEL_FLAGS \
486	MAKE_FLOPPIES \
487	MAKE_ISOS \
488	NOCDROM \
489	NODOC \
490	NOPORTS \
491	NO_SHARED \
492	NOSRC \
493	NO_CPU_CFLAGS \
494	NO_CPU_COPTFLAGS \
495	NO_FLOPPIES \
496	RELEASETAG \
497	RELNOTES_LANG \
498	SEPARATE_LIVEFS \
499	TARGET \
500	TARGET_ARCH \
501	WORLD_FLAGS
502.if defined(${var})
503	echo "export ${var}=\"${${var}}\""	>> ${_MK}
504.endif
505.endfor
506	# Don't remove this, or the build will fall over!
507	echo "export RELEASEDIR=${_R}"		>> ${_MK}
508	echo "export PATH=/bin:/usr/bin:/sbin:/usr/sbin:${LOCALDIR}"	>> ${_MK}
509	echo "export MANBUILDCAT=YES"		>> ${_MK}
510	# NB: these may fail if the host is running w/o devfs
511	echo "umount /dev >/dev/null 2>&1 || true" >> ${_MK}
512	echo "mount -t devfs devfs /dev >/dev/null 2>&1 || true"	>> ${_MK}
513	echo "if [ ! -c /dev/null ]; then" >> ${_MK}
514	echo "	echo /dev/null is not a device!" >> ${_MK}
515	echo "	exit 1" >> ${_MK}
516	echo "fi" >> ${_MK}
517	echo "if [ -x /etc/rc.d/ldconfig ]; then" >> ${_MK}
518	echo "	/etc/rc.d/ldconfig start"	>> ${_MK}
519	echo "else"				>> ${_MK}
520	echo "	ldconfig /lib /usr/lib /usr/local/lib || true" >> ${_MK}
521	echo "fi"				>> ${_MK}
522	echo "if [ ! -f /tmp/.world_done ]; then" >> ${_MK}
523	echo "	cd /usr/src"			>> ${_MK}
524	echo "	${CROSSMAKE} ${WORLD_FLAGS} -DNO_CLEAN buildworld && \\" >> ${_MK}
525	echo "	touch /tmp/.world_done || exit 1" >> ${_MK}
526	echo "fi"				>> ${_MK}
527	echo "if [ ! -f /tmp/.skip_ports_index ]; then" >> ${_MK}
528	echo "	echo \">>> make index started on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
529	echo "	for i in ${MAKEINDEXPORTS}"	>> ${_MK}
530	echo "	do"			>> ${_MK}
531	echo "		cd /usr/ports/\$${i}"	>> ${_MK}
532	echo "		env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \\" >> ${_MK}
533	echo "		make all install clean BATCH=yes FORCE_PKG_REGISTER=yes" >> ${_MK}
534	echo "	done"				>> ${_MK}
535	echo "	cd /usr/ports"			>> ${_MK}
536	echo "	rm -f INDEX*"			>> ${_MK}
537	echo "	make index -DINDEX_PRISTINE"	>> ${_MK}
538	echo "	rm -f INDEX*.tmp"		>> ${_MK}
539	echo "	touch /tmp/.skip_ports_index"	>> ${_MK}
540	echo "	echo \">>> make index finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
541	echo "fi"				>> ${_MK}
542	echo "cd /usr/src/release"		>> ${_MK}
543	echo "make obj"				>> ${_MK}
544	echo "make \$${_RELTARGET}"		>> ${_MK}
545	echo "echo \">>> make ${.TARGET} for ${TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
546	chmod 755 ${_MK}
547.if defined(NOPORTS)
548	touch ${CHROOTDIR}/tmp/.skip_ports_index
549.endif
550	# Ensure md.ko is loaded if md(4) is not statically compiled into 
551	# the kernel
552	-mdconfig 2>/dev/null
553	env -i /usr/sbin/chroot `dirname ${_MK}` /`basename ${_MK}`
554
555clean:
556	rm -rf ${CRUNCH_TARGETS:S/$/_crunch/} release.[0-8] ${EXTRAS}
557
558fetch-distfiles:
559	@for i in ${MAKEINDEXPORTS}; do \
560		cd ${CHROOTDIR}/usr/ports/$$i && \
561			make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \
562			checksum-recursive ; \
563	done
564	@for i in ${DOCPORTS}; do \
565		cd ${CHROOTDIR}/usr/ports/$$i && \
566			make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \
567			WITHOUT_X11=yes JADETEX=no WITHOUT_PYTHON=yes \
568			checksum-recursive ; \
569	done
570
571# Clean out ${_R} and make the directory structure.
572release.1:
573	mkdir -p ${_R}
574	-rm -rf ${_R}/* 2> /dev/null
575	-chflags -R noschg ${_R}/.
576	rm -rf ${_R}/*
577	mkdir ${RD}
578.if defined(MAKE_FLOPPIES)
579	mkdir ${RD}/floppies
580.endif
581	mkdir ${RD}/trees
582	for i in ${DISTRIBUTIONS}; do \
583		mkdir ${RD}/trees/$$i && \
584		mtree -deU -f ${MTREEFILES}/BSD.root.dist \
585		    -p ${RD}/trees/$$i > /dev/null && \
586		mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
587		    -p ${RD}/trees/$$i/usr > /dev/null && \
588		mtree -deU -f ${MTREEFILES}/BSD.include.dist \
589		    -p ${RD}/trees/$$i/usr/include > /dev/null && \
590		mtree -deU -f ${MTREEFILES}/BSD.var.dist \
591		    -p ${RD}/trees/$$i/var > /dev/null ; \
592	done
593	mkdir ${RD}/kernels
594	for i in ${KERNELS_BASE} ${KERNELS}; do \
595		mkdir -p ${RD}/kernels/$${i}; \
596	done
597	touch ${.TARGET}
598
599# Install the system into the various distributions.
600release.2:
601	cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/trees/base
602	cd ${.CURDIR}/.. && ${CROSSMAKE} ${WORLD_FLAGS} distributeworld \
603	    DISTDIR=${RD}/trees
604	touch ${.TARGET}
605
606# Make and install the generic kernel(s).
607release.3:
608.for kernel in ${KERNELS_BASE} ${KERNELS}
609	cd ${.CURDIR}/..; \
610	${CROSSMAKE} ${KERNEL_FLAGS} \
611 	    KERNCONF=${kernel} kernel \
612 	    DESTDIR=${RD}/kernels KODIR=/${kernel}
613.endfor
614	touch ${.TARGET}
615
616# Make and install the three crunched binaries which live on the floppies.
617# You are not supposed to like this :-)
618release.4:
619	rm -rf ${RD}/crunch
620	mkdir -p ${RD}/crunch
621.for j in ${CRUNCH_TARGETS}
622.if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf)
623	rm -rf ${j}_crunch
624	mkdir ${j}_crunch
625	cd ${j}_crunch; ${WMAKEENV} crunchgen -o \
626	    ${.CURDIR}/${TARGET}/${j}_crunch.conf
627	cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean
628	cd ${.CURDIR}/..; ${BINMAKE} -f Makefile.inc1 _build-tools
629	cd ${j}_crunch; CFLAGS="-Os -pipe" ${WMAKE} -f ${j}_crunch.mk \
630	    -DNO_CPU_CFLAGS all
631	${WMAKEENV} strip -R .comment ${j}_crunch/${j}_crunch
632	mv ${j}_crunch/${j}_crunch ${RD}/crunch/${j}
633.endif
634.endfor
635	touch ${.TARGET}
636
637#
638# --==## Fix up the distributions. ##==--
639#
640release.5:
641	# Create any "synthetic dists" now.
642	@for i in ${DISTRIBUTIONS}; do \
643		if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
644			echo -n "Running $$i dist creation script... "; \
645			env RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
646			echo "Done."; \
647		fi \
648	done \
649
650	# Remove all the directories we don't need.
651	-cd ${RD}/trees && \
652		(find ${OTHER_DISTS} -path '*/var/empty' | xargs chflags noschg; \
653		find ${OTHER_DISTS} -depth -type d -print | xargs rmdir)
654	touch ${.TARGET}
655
656#
657# --==## Package up the tarballs from assembled trees ##==--
658#
659release.6:
660	rm -rf ${RD}/dists
661	mkdir -p ${RD}/dists
662	@for i in ${DISTRIBUTIONS} ; \
663	do \
664		if [ -d ${RD}/trees/$${i} ] ; then \
665			cd ${.CURDIR} && $(MAKE) doTARBALL \
666				SD=${RD}/trees/$${i} \
667				TN=$$i TD=$$i ARG="." && \
668			echo "$${i} distribution is finished."; \
669		fi ; \
670	done
671	@for i in ${KERNELS_BASE} ${KERNELS} ; \
672	do \
673		if [ -d ${RD}/kernels/$${i} ] ; then \
674			cd ${.CURDIR} && $(MAKE) doTARBALL \
675				SD=${RD}/kernels \
676				TN=$$i TD=kernels ARG="$$i" && \
677			echo "$${i} distribution is finished."; \
678		fi ; \
679	done
680.if !defined(NOPORTS)
681	# XXX: Inline stripped version of doTARBALL
682	@rm -rf ${RD}/dists/ports/ports*
683	@mkdir -p ${RD}/dists/ports
684	@echo rolling ports/ports tarball
685	@tar --exclude CVS --exclude 'ports/distfiles/*' \
686	  -czf ${RD}/dists/ports/ports.tgz -C /usr ports
687	@cp ${.CURDIR}/scripts/ports-install.sh ${RD}/dists/ports/install.sh
688	@(cd ${RD}/dists/ports; \
689	  rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
690	  md5 * > .CHECKSUM.MD5; \
691	  sha256 * > .CHECKSUM.SHA256; \
692	  mv .CHECKSUM.MD5 CHECKSUM.MD5; \
693	  mv .CHECKSUM.SHA256 CHECKSUM.SHA256)
694	@echo "ports distribution is finished."
695.endif
696	touch ${.TARGET}
697
698
699#
700# --==## Make source dists ##==--
701#
702release.7:
703.if !defined(NOSRC)
704	@cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \
705		TD=src TN=sbase ARG="[A-Z]*"
706	@for i in `cd /usr/src && echo [a-z]*` ; do \
707		if [ -d /usr/src/$$i ] ; then \
708			cd ${.CURDIR} && $(MAKE) doTARBALL \
709				TN=`echo s$$i | tr -d '.' | \
710				    sed -e 's/usr/u/' \
711					-e 's/kerberos5/krb5/'` \
712				SD=/usr/src TD=src ARG="$$i" ; \
713		fi ; \
714	done
715.if defined(EXTRA_SRC)
716	@set ${EXTRA_SRC} && \
717	while [ $$# -ge 2 ] ; do \
718		if [ -d /usr/src/$$1 ] ; then \
719			cd ${.CURDIR} && $(MAKE) doTARBALL \
720				SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \
721		fi && shift && shift ; \
722	done
723.endif
724	(cd ${RD}/dists/src; \
725	  rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
726	  md5 * > .CHECKSUM.MD5; \
727	  sha256 * > .CHECKSUM.SHA256; \
728	  mv .CHECKSUM.MD5 CHECKSUM.MD5; \
729	  mv .CHECKSUM.SHA256 CHECKSUM.SHA256)
730	@echo "src distribution is finished."
731.endif
732	touch ${.TARGET}
733
734# Build the memory root filesystem.
735release.8:
736	cp ${RD}/trees/base/etc/disktab /etc
737	rm -rf ${RD}/mfsfd
738	mkdir ${RD}/mfsfd
739	cd ${RD}/mfsfd && \
740		mkdir -p etc/defaults dev mnt stand/etc/defaults stand/help \
741		var/empty
742	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \
743		DIR=${RD}/mfsfd/stand ZIP=false
744	( cd ${RD}/mfsfd && \
745	  for dir in bin sbin ; do \
746		ln -sf /stand $$dir; \
747	  done )
748	cp ${RD}/trees/base/sbin/dhclient-script ${RD}/mfsfd/stand
749.if ${TARGET} == "pc98"
750	cp ${.CURDIR}/../etc/defaults/pccard.conf \
751	    ${RD}/mfsfd/etc/defaults/pccard.conf
752.endif
753	cp ${.CURDIR}/../etc/master.passwd ${RD}/mfsfd/etc/master.passwd
754	cp ${RD}/trees/base/etc/*pwd.db ${RD}/mfsfd/etc/
755	( for F in defaults/rc.conf netconfig protocols ; do \
756		sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
757		${RD}/trees/base/etc/$$F > ${RD}/mfsfd/stand/etc/$$F ; \
758	  done )
759	grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
760	    ${RD}/trees/base/etc/services | \
761	    sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
762	    > ${RD}/mfsfd/stand/etc/services
763	grep 'operator' ${RD}/trees/base/etc/group \
764	    > ${RD}/mfsfd/stand/etc/group
765	ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services
766	ln ${RD}/mfsfd/stand/etc/group ${RD}/mfsfd/etc/group
767	ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig
768	cp ${RD}/trees/base/COPYRIGHT ${RD}/mfsfd/stand/help/COPYRIGHT.hlp
769.if !defined(NODOC)
770	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
771	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
772	      ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
773	done
774	@for i in ${DIST_DOCS_ARCH_DEP}; do \
775	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
776	      ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
777	done
778	@mv ${RD}/mfsfd/stand/help/INSTALLATION.TXT \
779	    ${RD}/mfsfd/stand/help/INSTALL.TXT
780.endif
781	-test -f ${.CURDIR}/install.cfg \
782	    && cp ${.CURDIR}/install.cfg ${RD}/mfsfd
783	@mkdir -p ${RD}/mfsfd/boot
784.if ${TARGET_ARCH} != "ia64" && ${TARGET_ARCH} != "powerpc"
785	@cp ${RD}/trees/base/boot/boot* ${RD}/mfsfd/boot
786.endif
787.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
788	@cp ${RD}/trees/base/boot/mbr ${RD}/mfsfd/boot
789.endif
790	@tar --exclude CVS -cf - -C ${.CURDIR}/../usr.sbin/sysinstall help | \
791		tar xf - -C ${RD}/mfsfd/stand
792	@mkdir -p ${RD}/mfsroot
793	sh -e ${DOFS_SH} ${RD}/mfsroot/mfsroot ${RD} ${MNT} \
794	    ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL}
795	@gzip -9fnv ${RD}/mfsroot/mfsroot
796	touch ${.TARGET}
797
798KERNFLOPPYSET=		${RD}/floppyset/kern/kernel.gz
799.if defined(SMALLFLOPPYSIZE)
800SMALLKERNFLOPPYSET=	${RD}/floppyset/kern-small/kernel.gz
801.endif
802.if defined(SPLIT_MFSROOT)
803MFSROOTFLOPPYSET=	${RD}/floppyset/mfsroot/mfsroot.gz
804.if defined(SMALLFLOPPYSIZE)
805SMALLMFSROOTFLOPPYSET=	${RD}/floppyset/mfsroot-small/mfsroot.gz
806.endif
807.endif
808
809# Build boot and install floppies.
810floppies.1:
811	@gzip -9nc ${RD}/kernels/GENERIC/kernel > ${RD}/kernels/kernel.gz
812	@echo "Making the kernel boot floppies..."
813	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=kern \
814	    FLOPPYDESC="Kernel" SPLITFILE=${RD}/kernels/kernel.gz
815.if defined(SMALLFLOPPYSIZE)
816	@echo "Making the small kernel boot floppies..."
817	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=kern-small \
818	    FLOPPYDESC="Kernel" SPLITFILE=${RD}/kernels/kernel.gz \
819	    FDSIZE="SMALL"
820.endif
821.if defined(SPLIT_MFSROOT)
822	@echo "Making the mfsroot boot floppies..."
823	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=mfsroot \
824	    FLOPPYDESC="Memory Filesystem" SPLITFILE=${RD}/mfsroot/mfsroot.gz
825.if defined(SMALLFLOPPYSIZE)
826	@echo "Making the small mfsroot boot floppies..."
827	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=mfsroot-small \
828	    FLOPPYDESC="Memory Filesystem" SPLITFILE=${RD}/mfsroot/mfsroot.gz \
829	    FDSIZE="SMALL"
830.endif
831	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot" \
832	    KERNFILE="${KERNFLOPPYSET}.split ${KERNFLOPPYSET}.boot" \
833	    MFSROOTFILE="${MFSROOTFLOPPYSET}.split ${MFSROOTFLOPPYSET}.boot"
834.if defined(SMALLFLOPPYSIZE)
835	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot-small" \
836	    KERNFILE="${SMALLKERNFLOPPYSET}.split ${SMALLKERNFLOPPYSET}.boot" \
837	    MFSROOTFILE="${SMALLMFSROOTFLOPPYSET}.split ${SMALLMFSROOTFLOPPYSET}.boot" \
838	    FDSIZE="SMALL"
839.endif
840.else	# !SPLIT_MFSROOT
841	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot" \
842	    KERNFILE="${KERNFLOPPYSET}.split ${KERNFLOPPYSET}.boot" \
843	    MFSROOTFILE=${RD}/mfsroot/mfsroot.gz
844.if defined(SMALLFLOPPYSIZE)
845	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot-small" \
846	    KERNFILE="${SMALLKERNFLOPPYSET}.split ${SMALLKERNFLOPPYSET}.boot" \
847	    MFSROOTFILE=${RD}/mfsroot/mfsroot.gz \
848	    FDSIZE="SMALL"
849.endif
850.endif	# SPLIT_MFSROOT
851	touch ${.TARGET}
852
853# Build fixit floppy.
854floppies.2:
855	@echo "Making fixit floppy."
856	@rm -rf ${RD}/fixitfd
857	@mkdir ${RD}/fixitfd
858	@cd ${RD}/fixitfd && \
859	    mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
860	    usr/share/misc
861	@cp ${RD}/trees/base/etc/spwd.db ${RD}/trees/base/etc/group \
862	    ${RD}/fixitfd/etc
863	@sed -e 's/#.*//' ${RD}/trees/base/etc/protocols \
864	    > ${RD}/fixitfd/etc/protocols
865	@sed -e 's/#.*//' ${RD}/trees/base/usr/share/misc/scsi_modes \
866	    > ${RD}/fixitfd/usr/share/misc/scsi_modes
867	@cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
868	@cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
869	@cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
870	@chmod 555 ${RD}/fixitfd/stand/tar
871.if defined(SMALLFLOPPYSIZE)
872	@cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit-small \
873	    DIR=${RD}/fixitfd/stand ZIP=false
874	@sh -e ${DOFS_SH} ${RD}/floppies/fixit-small.flp ${RD} ${MNT} \
875	    ${SMALLFLOPPYSIZE} ${RD}/fixitfd ${FLOPPYINODE} ${SMALLFLOPPYLABEL}
876	@rm -rf ${RD}/fixitfd/stand
877	@mkdir ${RD}/fixitfd/stand
878.endif
879	@cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit \
880	    DIR=${RD}/fixitfd/stand ZIP=false
881	@sh -e ${DOFS_SH} ${RD}/floppies/fixit.flp ${RD} ${MNT} \
882	    ${FLOPPYSIZE} ${RD}/fixitfd ${FLOPPYINODE} ${FLOPPYLABEL}
883	touch ${.TARGET}
884
885# Do our last minute floppies directory setup
886floppies.3:
887.if !defined(NODOC)
888	@cp ${RND}/${RELNOTES_LANG}/installation/${TARGET}/article.txt \
889	    ${RD}/floppies/README.TXT
890	@(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5)
891	@(cd ${RD}/floppies; sha256 README.TXT *.flp > CHECKSUM.SHA256)
892.else
893	@(cd ${RD}/floppies; md5 *.flp > CHECKSUM.MD5)
894	@(cd ${RD}/floppies; sha256 *.flp > CHECKSUM.SHA256)
895.endif
896	touch ${.TARGET}
897
898#
899# --==## Setup a suitable ftp-area ##==--
900#
901ftp.1:
902	@echo "Setting up FTP distribution area"
903	@mkdir -p ${FD}
904	-@ln -s . ${FD}/${BUILDNAME}
905.if defined(MAKE_FLOPPIES)
906	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
907.endif
908	@cd ${RD}/dists && find . -print | cpio -dumpl ${FD}
909.if !defined(NODOC)
910	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
911		cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
912		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
913		cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
914		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
915	done
916	@for i in ${DIST_DOCS_ARCH_DEP}; do \
917		cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
918		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
919		cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
920		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
921	done
922	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${FD}
923	@mv ${FD}/INSTALLATION.TXT ${FD}/INSTALL.TXT
924	@mv ${FD}/INSTALLATION.HTM ${FD}/INSTALL.HTM
925.endif
926	@echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
927	touch ${.TARGET}
928
929# Build a live filesystem cdrom image
930cdrom.1:
931	@echo "Building CDROM live filesystem image"
932	@mkdir -p ${CD_LIVEFS}
933	@for i in ${DISTRIBUTIONS} ; \
934	do \
935		if [ -d ${RD}/trees/$${i} ] ; then \
936			chflags -R noschg ${RD}/trees/$${i} || true ; \
937			( cd ${RD}/trees/$${i} && \
938			    find . -depth -print | cpio -dumpl ${CD_LIVEFS} ) ; \
939		fi \
940	done
941	@echo "Copy GENERIC kernel to boot area"
942	@cp -Rp ${RD}/kernels/GENERIC/ ${CD_LIVEFS}/boot/kernel
943	@rm -f ${CD_LIVEFS}/.profile
944	@cp ${.CURDIR}/fixit.profile ${CD_LIVEFS}/.profile
945	@ln -sf /rescue ${CD_LIVEFS}/stand
946	@echo "Setting up CDROM boot area"
947	@rm -f ${CD_LIVEFS}/boot/loader.conf
948	@cp ${RD}/mfsroot/mfsroot.gz ${CD_LIVEFS}/boot/mfsroot.gz
949	@echo 'mfsroot_load="YES"' > ${CD_LIVEFS}/boot/loader.conf
950	@echo 'mfsroot_type="mfs_root"' >> ${CD_LIVEFS}/boot/loader.conf
951	@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_LIVEFS}/boot/loader.conf
952.if exists(${RD}/trees/base/boot/device.hints)
953	# Break the link to device.hints so we can modify it
954	@rm -f ${CD_LIVEFS}/boot/device.hints
955	@cp ${RD}/trees/base/boot/device.hints ${CD_LIVEFS}/boot/device.hints
956.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
957	@echo 'hint.atkbd.0.flags="0x1"' >> ${CD_LIVEFS}/boot/device.hints
958.endif
959.endif
960	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_LIVEFS}/cdrom.inf
961	touch ${.TARGET}
962
963# Build disc1 and disc2 cdrom images
964cdrom.2:
965	@echo "Building CDROM disc1 filesystem image"
966	@mkdir -p ${CD_DISC1}/${BUILDNAME}
967.if defined(MAKE_FLOPPIES)
968	@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1}
969.endif
970	@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1}/${BUILDNAME}
971.if !defined(NODOC)
972	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
973	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
974	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
975	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
976	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
977	done
978	@for i in ${DIST_DOCS_ARCH_DEP}; do \
979	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
980	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
981	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
982	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
983	done
984	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DISC1}
985	@mv ${CD_DISC1}/INSTALLATION.TXT ${CD_DISC1}/INSTALL.TXT
986	@mv ${CD_DISC1}/INSTALLATION.HTM ${CD_DISC1}/INSTALL.HTM
987.endif
988.if defined(SEPARATE_LIVEFS)
989	@cp -Rp ${CD_LIVEFS}/boot ${CD_DISC1}
990	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
991.endif
992	@echo "CD_VOLUME = 1" >> ${CD_DISC1}/cdrom.inf
993	@echo "Building CDROM disc2 filesystem image"
994	@mkdir -p ${CD_DISC2}
995	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
996	@echo "CD_VOLUME = 2" >> ${CD_DISC2}/cdrom.inf
997.if !defined(NODOC)
998	@mkdir -p ${CD_DISC2}/usr/share/doc
999	@for i in `ls ${CD_LIVEFS}/usr/share/doc`; do \
1000		if [ -L ${CD_LIVEFS}/usr/share/doc/$$i -o \
1001		    -d /usr/doc/$$i ]; then \
1002			mv ${CD_LIVEFS}/usr/share/doc/$$i \
1003			    ${CD_DISC2}/usr/share/doc; \
1004		fi \
1005	done
1006.endif
1007	touch ${.TARGET}
1008
1009#
1010# --==## Setup a suitable cdrom-area ##==--
1011#
1012cdrom.3:
1013.if defined(CD_BOOT)
1014	@echo "Building bootonly CDROM filesystem image"
1015	@mkdir -p ${CD_BOOT}
1016	@cp -Rp ${CD_LIVEFS}/boot ${CD_BOOT}
1017	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_BOOT}/cdrom.inf
1018.if defined(MINIROOT)
1019	@echo "Building bootonly UFS filesystem image"
1020	@mkdir -p ${FD}/miniroot
1021	@sh -e ${DOFS_SH} ${FD}/miniroot/miniroot.ufs \
1022	    ${RD} ${MNT} 0 ${CD_BOOT} 8192 auto
1023	@gzip -9v ${FD}/miniroot/miniroot.ufs
1024.endif
1025.endif
1026	touch ${.TARGET}
1027
1028.if make(iso.1)
1029.if defined(CD_PACKAGE_TREE)
1030.if exists(${CD_PACKAGE_TREE}/disc1)
1031CD_DISC1_PKGS=	${CD_PACKAGE_TREE}/disc1
1032.endif
1033.if exists(${CD_PACKAGE_TREE}/disc2)
1034CD_DISC2_PKGS=	${CD_PACKAGE_TREE}/disc2
1035.endif
1036.endif
1037.endif
1038
1039iso.1:
1040.if exists(${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh)
1041	@echo "Creating ISO images..."
1042.if defined(CD_BOOT)
1043	@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
1044	    FreeBSD_bootonly \
1045	    ${CD}/${BUILDNAME}-${TARGET}-bootonly.iso ${CD_BOOT}
1046.endif
1047	@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
1048	    FreeBSD_Install \
1049	    ${CD}/${BUILDNAME}-${TARGET}-disc1.iso ${CD_DISC1} \
1050	    ${CD_DISC1_PKGS}
1051	@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh \
1052	    FreeBSD_Packages \
1053	    ${CD}/${BUILDNAME}-${TARGET}-disc2.iso ${CD_DISC2} \
1054	    ${CD_DISC2_PKGS}
1055.if defined(SEPARATE_LIVEFS)
1056	@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
1057	    FreeBSD_LiveFS \
1058	    ${CD}/${BUILDNAME}-${TARGET}-livefs.iso ${CD_LIVEFS}
1059.endif
1060	@echo "Generating MD5 and SHA256 sums..."
1061	@(cd ${CD} && md5 *.iso > ${BUILDNAME}-${TARGET}-iso.CHECKSUM.MD5)
1062	@(cd ${CD} && sha256 *.iso > ${BUILDNAME}-${TARGET}-iso.CHECKSUM.SHA256)
1063	touch ${.TARGET}
1064.else
1065	@echo "Do not know how to create an ISO for ${TARGET_ARCH}."
1066.endif
1067
1068#
1069# --==## Documentation Project files such as the Handbook and FAQ ##==--
1070#
1071doc.1:
1072	@echo "Making docs..."
1073	@for i in ${DOCPORTS}; do \
1074	    cd /usr/ports/$$i && \
1075	    env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \
1076		make all install clean BATCH=yes WITHOUT_X11=yes JADETEX=no \
1077		WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \
1078	done
1079	@cd /usr/doc && make all install 'FORMATS=html html-split txt' \
1080	    INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/base/usr/share/doc \
1081	    URLS_ABSOLUTE=YES	
1082	touch ${.TARGET}
1083
1084#
1085# --==## RELNOTESng:  Next-generation replacements for *.TXT files ##==--
1086#
1087doc.2:
1088	@echo "Making release documentation..."
1089	@cd ${.CURDIR}/doc && make all install clean 'FORMATS=html txt' \
1090	    INSTALL_COMPRESSED='' URLS_ABSOLUTE=YES DOCDIR=${RND}
1091	touch ${.TARGET}
1092
1093# Various "subroutine" and other supporting targets.
1094
1095# RD=
1096# SD=
1097# TD=
1098# ARG=
1099doTARBALL:
1100.if !defined(SD)
1101	@echo "SD undefined in doTARBALL" && exit 1
1102.endif
1103.if !defined(TD)
1104	@echo "TD undefined in doTARBALL" && exit 1
1105.endif
1106.if !defined(ARG)
1107	@echo "ARG undefined in doTARBALL" && exit 1
1108.endif
1109	@rm -rf ${RD}/dists/${TD}/${TN}*
1110	@mkdir -p ${RD}/dists/${TD}
1111	@( cd ${SD} && \
1112		tn=`echo ${TN} | tr 'A-Z' 'a-z' | cut -c1-8` && \
1113		echo rolling ${TD}/$$tn tarball &&\
1114		tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
1115		${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \
1116		sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn \
1117		    > ${RD}/dists/${TD}/$$tn.inf && \
1118		if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \
1119			cp -p ${.CURDIR}/scripts/$${TD}-install.sh \
1120			    ${RD}/dists/${TD}/install.sh && \
1121			chmod +x ${RD}/dists/${TD}/install.sh; \
1122		fi && \
1123		if [ "${SD}" != "/usr/src" ]; then \
1124			mtree -c -i -p ${SD}/${ARG} \
1125			  -k gname,md5digest,mode,nlink,uname,size,link,type \
1126			  > ${RD}/dists/${TD}/$$tn.mtree ; \
1127		else \
1128			true; \
1129		fi; \
1130		( cd ${RD}/dists/${TD}; \
1131		rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
1132		md5 * > .CHECKSUM.MD5; \
1133		sha256 * > .CHECKSUM.SHA256; \
1134		mv .CHECKSUM.MD5 CHECKSUM.MD5; \
1135		mv .CHECKSUM.SHA256 CHECKSUM.SHA256) \
1136	)
1137
1138doRELEASE: release.1 release.2 ${DOCREL} release.3 release.4 \
1139    release.5 release.6 release.7 release.8 ${EXTRAS}
1140	@echo "Release done"
1141
1142floppies:
1143	@rm -f release.4 release.8 floppies.[123]
1144	@cd ${.CURDIR} && ${MAKE} release.4 release.8 floppies.1 floppies.2 \
1145	    floppies.3
1146	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
1147
1148installCRUNCH:
1149.if !defined(CRUNCH)
1150	@echo "CRUNCH undefined in installCRUNCH" && exit 1
1151.endif
1152.if !defined(DIR)
1153	@echo "DIR undefined in installCRUNCH" && exit 1
1154.endif
1155.if !defined(ZIP)
1156	@echo "ZIP undefined in installCRUNCH" && exit 1
1157.endif
1158	@if ${ZIP} ; then \
1159		gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \
1160	else \
1161		ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \
1162	fi
1163	@chmod 555 ${DIR}/${CRUNCH}_crunch
1164	@if [ -f ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf ] ; then \
1165		for i in `crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \
1166			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
1167		done \
1168	else \
1169		for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
1170			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
1171		done \
1172	fi
1173
1174#
1175# --==## Build a floppy set for a splitfs file ##==--
1176#
1177# FLOPPYBASE - basename of floppy image files
1178# FLOPPYDESC - description of floppy set
1179# SPLITFILE - filename of the file to split
1180# FDSIZE - if specified and "small", small floppy is created
1181
1182.if make(makeFloppySet)
1183SPLITDIR=	${RD}/floppyset/${FLOPPYBASE}
1184.if defined(FDSIZE) && ${FDSIZE} == "SMALL"
1185FLPSPLITSIZE=	${SMALLFLOPPYSPLITSIZE}
1186FLPSIZE=	${SMALLFLOPPYSIZE}
1187FLPLABEL=	${SMALLFLOPPYLABEL}
1188.else
1189FLPSPLITSIZE=	${FLOPPYSPLITSIZE}
1190FLPSIZE=	${FLOPPYSIZE}
1191FLPLABEL=	${FLOPPYLABEL}
1192.endif
1193.endif
1194
1195makeFloppySet:
1196.if !defined(FLOPPYBASE)
1197	@echo "FLOPPYBASE undefined in ${.TARGET}" && exit 1
1198.endif
1199.if !defined(FLOPPYDESC)
1200	@echo "FLOPPYDESC undefined in ${.TARGET}" && exit 1
1201.endif
1202.if !defined(SPLITFILE)
1203	@echo "SPLITFILE undefined in ${.TARGET}" && exit 1
1204.endif
1205	sh ${.CURDIR}/scripts/split-file.sh ${SPLITFILE} \
1206	    ${RD}/floppyset/${FLOPPYBASE} ${FLPSPLITSIZE} "${FLOPPYDESC}"
1207	( splitfile=${SPLITDIR}/`basename ${SPLITFILE}`.split ; \
1208	lines=`cat $${splitfile} | wc -l`; \
1209	lines=$$(($$lines - 1)) ; \
1210	for line in `jot $$lines`; do \
1211		file=`head -n $$(($${line} + 1)) $${splitfile} | tail -1 | cut -f 1 -d ' '` ; \
1212		sh -e ${DOFS_SH} ${RD}/floppies/${FLOPPYBASE}$${line}.flp \
1213		${RD} ${MNT} ${FLPSIZE} ${SPLITDIR}/$${file} \
1214		${BOOTINODE} ${FLPLABEL}; \
1215	done )
1216
1217#
1218# --==## Build a boot floppy ##==--
1219#
1220# FSIMAGE - base floppy image name
1221# FDSIZE - if specified and "small", small floppy is created
1222# KERNFILE - path to kernel split file
1223# MFSROOTFILE - path to mfsroot split file
1224
1225.if make(buildBootFloppy)
1226IMAGEDIR=	${RD}/image.${FSIMAGE}
1227BOOTDIR=	${RD}/trees/base/boot
1228HINTSFILE=	${BOOTDIR}/device.hints
1229ACPI_KO=	${RD}/kernels/GENERIC/acpi.ko
1230IMAGEFILE=	${RD}/floppies/${FSIMAGE}.flp
1231.if defined(FDSIZE) && ${FDSIZE} == "SMALL"
1232FLPSIZE=	${SMALLFLOPPYSIZE}
1233FLPLABEL=	${SMALLFLOPPYLABEL}
1234.else
1235FLPSIZE=	${FLOPPYSIZE}
1236FLPLABEL=	${FLOPPYLABEL}
1237.endif
1238.endif
1239
1240buildBootFloppy:
1241.if !defined(FSIMAGE)
1242	@echo "FSIMAGE undefined in ${.TARGET}" && exit 1
1243.endif
1244.if !defined(KERNFILE)
1245	@echo "KERNFILE undefined in ${.TARGET}" && exit 1
1246.endif
1247.if !defined(MFSROOTFILE)
1248	@echo "MFSROOTFILE undefined in ${.TARGET}" && exit 1
1249.endif
1250	@echo "Running ${.TARGET} for ${FSIMAGE}"
1251	@rm -rf ${IMAGEDIR}
1252	@mkdir ${IMAGEDIR}
1253	@echo "Setting up /boot directory for ${FSIMAGE} floppy"
1254	@mkdir -p ${IMAGEDIR}/boot
1255.if ${TARGET} == "i386"
1256	@${WMAKEENV} kgzip -v -l ${RD}/trees/base/usr/lib/kgzldr.o -o \
1257	    ${IMAGEDIR}/boot/loader ${BOOTDIR}/loader
1258.else
1259	@cp ${BOOTDIR}/loader ${IMAGEDIR}/boot
1260.endif
1261	@cp -Rp ${BOOTDIR}/*.4th ${BOOTDIR}/defaults ${BOOTDIR}/loader.help \
1262	    ${BOOTDIR}/loader.rc ${IMAGEDIR}/boot
1263.if exists(${HINTSFILE})
1264	@cp ${HINTSFILE} ${IMAGEDIR}/boot/device.hints
1265.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
1266	@echo 'hint.atkbd.0.flags="0x1"' >> ${IMAGEDIR}/boot/device.hints
1267.endif
1268	@gzip -9n ${IMAGEDIR}/boot/device.hints
1269.endif
1270	@gzip -9n ${IMAGEDIR}/boot/*.4th ${IMAGEDIR}/boot/loader.help \
1271	    ${IMAGEDIR}/boot/defaults/loader.conf
1272	@echo 'bootfile="/kernel"' > ${IMAGEDIR}/boot/loader.conf
1273.if exists(${ACPI_KO})
1274	@gzip -9nc ${ACPI_KO} > ${IMAGEDIR}/acpi.ko.gz
1275	@echo 'acpi_load="YES"' >> ${IMAGEDIR}/boot/loader.conf
1276	@echo 'acpi_name="/acpi.ko"' >> ${IMAGEDIR}/boot/loader.conf
1277	@echo 'acpi_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
1278.endif
1279	@echo 'mfsroot_load="YES"' >> ${IMAGEDIR}/boot/loader.conf
1280	@echo 'mfsroot_type="mfs_root"' >> ${IMAGEDIR}/boot/loader.conf
1281	@echo 'mfsroot_name="/mfsroot"' >> ${IMAGEDIR}/boot/loader.conf
1282.if !exists(${ACPI_KO})
1283	@echo 'mfsroot_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
1284.endif
1285.if defined(SPLIT_MFSROOT)
1286	@echo 'mfsroot_after="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
1287.endif
1288.if ${TARGET_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT}
1289	@echo "-P" >> ${IMAGEDIR}/boot.config
1290.endif
1291	@rm -f ${IMAGEFILE}
1292	@cp ${KERNFILE} ${MFSROOTFILE} ${IMAGEDIR}
1293	sh -e ${DOFS_SH} ${IMAGEFILE} ${RD} ${MNT} ${FLPSIZE} ${IMAGEDIR} \
1294	    ${BOOTINODE} ${FLPLABEL}
1295	@echo "Created ${RD}/floppies/${FSIMAGE}.flp"
1296
1297.if make(package-split)
1298# Targets related to making a package split
1299#
1300# PKG_COPY instructs the script to copy the actual package files rather than
1301#     make hard links
1302# PKG_TREE is the path to the package tree to be split
1303# PKG_DEST is the path to the destination tree to create the split in
1304# PKG_VERBOSE asks for verbose output of the layout process
1305# PKG_INDEX is the path to the INDEX file. By default ${PKG_TREE}/INDEX.
1306
1307.if defined(PKG_COPY)
1308PKG_DO_COPY=	cp
1309.else
1310PKG_DO_COPY=	ln
1311.endif
1312PKG_WRKIDX=	${PKG_DEST}/INDEX.master
1313PKG_ENV?=
1314.if defined(TARGET_ARCH)
1315PKG_ENV+=	PKG_ARCH=${TARGET_ARCH}
1316.endif
1317.if defined(PKG_VERBOSE)
1318PKG_ENV+=	PKG_VERBOSE=1
1319.endif
1320PKG_INDEX?=	${PKG_TREE}/INDEX
1321
1322package-split:
1323.if !defined(PKG_TREE)
1324	@echo "PKG_TREE must be defined" && exit 1
1325.endif
1326.if !defined(PKG_DEST)
1327	@echo "PKG_DEST must be defined" && exit 1
1328.endif
1329	@env ${PKG_ENV} python ${.CURDIR}/scripts/package-split.py \
1330	    ${PKG_INDEX} ${PKG_WRKIDX}
1331	@env ${PKG_ENV} sh ${.CURDIR}/scripts/package-trees.sh ${PKG_DO_COPY} \
1332	    ${PKG_WRKIDX} ${PKG_TREE} ${PKG_DEST}
1333.endif
1334
1335.include <bsd.obj.mk>
1336