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