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