Makefile revision 74833
1# $FreeBSD: head/release/Makefile 74833 2001-03-27 01:06:58Z obrien $
2#
3# make release CHROOTDIR=/some/dir BUILDNAME=somename CVSROOT=/cvs/dir \
4#	[ RELEASETAG=tag ]
5#
6# Where "/some/dir" is the pathname of a directory on a some filesystem with
7# at least 1000MB of free space, "somename" is what you want the release to
8# call itself, "/cvs/dir" is where our source repo resides and, optionally,
9# which CVS "tag" name should be used when checking out the sources to build
10# the release (default is HEAD).
11#
12# Please note: the vn driver must also be compiled into your kernel,
13# otherwise the target 'release.8' and possibly others will fail.
14#
15# Set these, release builder!
16#
17# Fixed version:
18#BUILDNAME=5.0-RELEASE
19#
20# Automatic SNAP versioning:
21DATE != date +%Y%m%d
22BASE = 5.0
23BUILDNAME?=${BASE}-${DATE}-SNAP
24#
25#CHROOTDIR=/junk/release
26# If this is a -stable snapshot, then set
27#RELEASETAG=RELENG_4
28#
29# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
30# are building an official release.  Otherwise, we are building for
31# a branch.
32.if defined(RELEASETAG)
33ISRELEASE!=	expr ${RELEASETAG} : '^RELENG_.*_RELEASE$$' || true
34.if ${ISRELEASE} != 0
35# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
36AUXRELEASETAG!=	echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//'
37DOCRELEASETAG?=		${AUXRELEASETAG}
38PORTSRELEASETAG?=	${AUXRELEASETAG}
39.endif
40.endif
41
42KERNCONF=GENERIC
43
44# If you want to pass flags to the world build such as -j X, use
45# WORLD_FLAGS.  Similarly, you can specify make flags for kernel
46# builds via KERNEL_FLAGS.
47#WORLD_FLAGS=-j4
48#KERNEL_FLAGS=-j4
49
50# If you are using a local CVS repository with components stored in 
51# non-standard modules, override these on the make commandline or
52# in the environment.
53RELEASESRCMODULE?=	src
54RELEASEDOCMODULE?=	doc
55RELEASEPORTSMODULE?=	ports
56
57# Unless set elsewhere, indicate the object format we'll be using.
58OBJFORMAT?=		elf
59
60# Uncomment this to disable the doc.1 target.  It is also an ERROR
61# to set NOPORTS and not set NODOC since docs depend on ports.
62#NODOC=  YES
63#NOPORTS=  YES
64# Set ALLLANG=no if you want the release documentation to be
65# in English only.
66ALLLANG?=	yes
67DOCPORTS=	textproc/docproj
68# Set this to wherever the distfiles required by ${DOCPORTS} live.
69DOCDISTFILES?=	${.CURDIR}/../../ports/distfiles
70# Set this to 1 if you want -P to be used for automatic keyboard detection
71# on the boot floppy.  WARNING: Breaks on some Athlon (K7) motherboards.
72AUTO_KEYBOARD_DETECT?= 0
73
74
75DIST_DOCS= ABOUT.TXT ERRATA.TXT LAYOUT.TXT README.TXT HARDWARE.TXT \
76           RELNOTES.TXT TROUBLE.TXT UPGRADE.TXT INSTALL.TXT
77
78# Things which without too much trouble can be considered variables
79# BIN_DISTS are special in that they get full /etc installation sets.
80#
81.if ${MACHINE_ARCH} == "i386"
82COMPAT_DISTS?=	compat1x compat20 compat21 compat22 compat3x compat4x
83.else
84COMPAT_DISTS?=	compat4x
85.endif
86OTHER_DISTS?=	manpages catpages games proflibs dict info doc
87CRYPTO_DISTS?=	crypto krb4 krb5
88BIN_DISTS?=	bin
89DISTRIBUTIONS?=	${BIN_DISTS} ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS}
90KERNELS?=	GENERIC
91
92BOOT1=	etc/protocols etc/netconfig etc/defaults/rc.conf
93
94# mountpoint for filesystems.
95MNT=			/mnt
96
97# Various floppy image parameters.
98#
99
100.if ${MACHINE_ARCH} == "i386"
101.if ${MACHINE} == "pc98"
102SMALLBOOTSIZE=		1200
103BOOTSIZE=		1440
104FIXITSIZE=		1440
105MFSSIZE=		2880
106BOOTINODE=		80000
107FIXITINODE=		4000
108MFSINODE=		8000
109SMALLBOOTLABEL=		fd1200
110BOOTLABEL=		fd1440
111FIXITLABEL=		fd1440
112MFSLABEL=		minimum2
113.else
114BOOTSIZE=		1440
115FIXITSIZE=		1440
116MFSSIZE=		4320
117BIGBOOTSIZE=		2880
118BOOTINODE=		80000
119FIXITINODE=		4000
120MFSINODE=		8000
121BOOTLABEL=		fd1440
122FIXITLABEL=		fd1440
123MFSLABEL=		minimum3
124BIGBOOTLABEL=		minimum2
125.endif
126.elif ${MACHINE_ARCH} == "alpha"
127BOOTSIZE=		1440
128FIXITSIZE=		2880
129MFSSIZE=		2880
130BIGBOOTSIZE=		2880
131BOOTINODE=		80000
132FIXITINODE=		4000
133MFSINODE=		8000
134BOOTLABEL=		fd1440
135FIXITLABEL=		minimum2
136MFSLABEL=		minimum2
137BIGBOOTLABEL=		minimum2
138.endif
139
140ZIPNSPLIT=		gzip --no-name -9 -c | split -b 240640 -
141
142
143VNDEVICE?=		vn0
144
145# Things which may get you into trouble if you change them
146MTREEFILES=		${.CURDIR}/../etc/mtree
147_R=			/R
148RD=			${_R}/stage
149FD=			${_R}/ftp
150CD=			${_R}/cdrom
151CD_DISC1=		${CD}/disc1
152CD_DISC2=		${CD}/disc2
153
154# Where the bootstrap ports (see DOCPORTS) get installed.
155LOCALDIR=		/usr/local/bin
156
157# ${BOOTSTRAPDIR} is for those utilities that refer to the hosting
158# environment, rather than the target environment.  This is specifically
159# intended for kernel-dependent utilities that are used during the build.
160#
161# ${BOOTSTRAPDIR} is actually being used by prepending it to the normal
162# ${PATH}.  Thus, it's also available to outside utilities like doFS.sh.
163BOOTSTRAPDIR=	/bootstrap
164#
165# The mount subsystem has been changed between 2.2 and 3.0 by the
166# Lite2 import.
167BOOTSTRAPUTILS=	/sbin/mount /sbin/umount
168#
169# 3.0 cpio tries to reference lchown(2) which is not available in 2.2
170BOOTSTRAPUTILS+= /usr/bin/cpio
171
172.if !defined(CRUNCH_TARGETS)
173CRUNCH_TARGETS=	boot fixit
174.endif
175
176.if ${MACHINE} == "pc98"
177EXTRAS= ftp.1
178.else
179EXTRAS= cdrom.1 ftp.1
180.endif
181
182.if !defined(NODOC)
183DOCREL= doc.1
184.endif
185
186.if !defined(NOPORTREADMES)
187MAKEREADMES=	make readmes PORTSDIR=${CHROOTDIR}/usr/ports
188.else
189MAKEREADMES=	true
190.endif
191
192rerelease release:
193.if !defined(CHROOTDIR) || !defined(BUILDNAME) || !defined(CVSROOT)
194	@echo "To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false
195.endif
196.if defined(NOPORTS) && !defined(NODOC)
197	@echo "Ports are required for building the docs.  Either set NODOC or"
198	@echo "unset NOPORTS!"
199	@exit 1
200.endif
201	-vnconfig 2>/dev/null
202.if make(release)
203.if exists(${CHROOTDIR})
204# The first command will fail on a handful of files that have their schg
205# flags set.  But it greatly speeds up the next two commands.
206	-rm -rf ${CHROOTDIR} 2>/dev/null
207	-chflags -R noschg ${CHROOTDIR}/.
208	-rm -rf ${CHROOTDIR}
209.endif
210	mkdir -p ${CHROOTDIR}
211	@echo ">>> make release started on `LC_ALL=C TZ=GMT date`"
212	cd ${.CURDIR}/../etc && ${MAKE} distrib-dirs DESTDIR=${CHROOTDIR}
213	cd ${.CURDIR}/../etc && ${MAKE} distribution DESTDIR=${CHROOTDIR}
214	if [ -f /etc/resolv.conf ]; then \
215		cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \
216	fi
217	cd ${.CURDIR}/.. && ${MAKE} installworld DESTDIR=${CHROOTDIR} NOMAN=1
218	mkdir ${CHROOTDIR}/${BOOTSTRAPDIR}
219	for i in ${BOOTSTRAPUTILS} ; do \
220		cp -p ${CHROOTDIR}$$i ${CHROOTDIR}/${BOOTSTRAPDIR} ; \
221	done
222.if !defined(RELEASETAG)
223	cd ${CHROOTDIR}/usr && rm -rf src && \
224		cvs -R -d ${CVSROOT} co -P ${RELEASESRCMODULE}
225.else
226	cd ${CHROOTDIR}/usr && rm -rf src && \
227		cvs -R -d ${CVSROOT} co -P -r ${RELEASETAG} ${RELEASESRCMODULE}
228.endif
229.if defined(LOCAL_PATCHES) && exists(${LOCAL_PATCHES})
230	cd ${CHROOTDIR}/usr/src && patch ${PATCH_FLAGS} < ${LOCAL_PATCHES}
231.endif
232.if defined(LOCAL_SCRIPT) && exists(${LOCAL_SCRIPT})
233	cd ${CHROOTDIR} && env CHROOTDIR=${CHROOTDIR} BUILDNAME=${BUILDNAME} RELEASETAG=${RELEASETAG} ${LOCAL_SCRIPT}
234.endif
235.if !defined(NOPORTS)
236.if defined(PORTSRELEASETAG)
237	cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co -P -r ${PORTSRELEASETAG} ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES}
238.else
239	cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co -P ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES}
240.endif
241.endif
242.if !defined(NODOC)
243.if defined(DOCRELEASETAG)
244	cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} co -P -r ${DOCRELEASETAG} ${RELEASEDOCMODULE}
245.else
246	cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} co -P ${RELEASEDOCMODULE}
247.endif
248	if [ -d ${DOCDISTFILES}/ ]; then \
249		cp -rp ${DOCDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \
250	fi
251.endif
252.endif
253.if make(rerelease)
254.if !defined(RELEASENOUPDATE)
255.if !defined(RELEASETAG)
256	cd ${CHROOTDIR}/usr/src && cvs -R -q update -P -d
257.else
258	cd ${CHROOTDIR}/usr/src && cvs -R -q update -P -d -r ${RELEASETAG}
259.endif
260.if !defined(NOPORTS)
261	cd ${CHROOTDIR}/usr/ports && cvs -R -q update -P -d
262.endif
263.if !defined(NODOC)
264	cd ${CHROOTDIR}/usr/doc && cvs -R -q update -P -d
265.endif
266.endif
267.endif
268	# Add version information to those things that need it.
269	( cd ${CHROOTDIR}/usr/src/sys/conf && \
270	  mv newvers.sh foo && \
271	  sed "s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo > newvers.sh && rm foo )
272	echo OBJFORMAT=${OBJFORMAT} > ${CHROOTDIR}/etc/objformat
273	-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
274	echo "#!/bin/sh"			> ${CHROOTDIR}/mk
275	echo "set -ex"				>> ${CHROOTDIR}/mk
276	echo "_RELTARGET=\$${1:-doRELEASE}"	>> ${CHROOTDIR}/mk
277	echo "export CFLAGS='-O -pipe'"	>> ${CHROOTDIR}/mk
278	echo "export NO_X=YES"			>> ${CHROOTDIR}/mk
279	echo "export DISTRIBUTIONS=\"${DISTRIBUTIONS}\"" >> ${CHROOTDIR}/mk
280	echo "export BUILDNAME=${BUILDNAME}"	>> ${CHROOTDIR}/mk
281	echo "export VNDEVICE=${VNDEVICE}"	>> ${CHROOTDIR}/mk
282	echo "export OBJFORMAT=${OBJFORMAT}"	>> ${CHROOTDIR}/mk
283.if defined(RELEASETAG)
284	echo "export RELEASETAG=${RELEASETAG}"	>> ${CHROOTDIR}/mk
285.endif
286.if defined(NOPORTS)
287	echo "export NOPORTS=${NOPORTS}"	>> ${CHROOTDIR}/mk
288.endif
289.if defined(NODOC)
290	echo "export NODOC=${NODOC}"		>> ${CHROOTDIR}/mk
291.endif
292.if defined(ALLLANG) && ${ALLLANG} != "NO" && ${ALLLANG} != "no"
293	echo "export ALLLANG=${ALLLANG}"	>> ${CHROOTDIR}/mk
294.else
295	echo "export DOC_LANG=en_US.ISO_8859-1"	>> ${CHROOTDIR}/mk
296.endif
297.if defined(NOSRC)
298	echo "export NOSRC=${NOSRC}"		>> ${CHROOTDIR}/mk
299.endif
300.if defined(NOSHARED)
301	echo "export NOSHARED=${NOSHARED}"	>> ${CHROOTDIR}/mk
302.endif
303.if defined(BOOT_CONFIG)
304	echo "export BOOT_CONFIG=\"${BOOT_CONFIG}\"">> ${CHROOTDIR}/mk
305.endif
306.if defined(KERNEL_FLAGS)
307	echo "export KERNEL_FLAGS=\"${KERNEL_FLAGS}\"" >> ${CHROOTDIR}/mk
308.endif
309	# Don't remove this, or the build will fall over!
310	echo "export RELEASEDIR=${_R}"		>> ${CHROOTDIR}/mk
311	echo "export PATH=${BOOTSTRAPDIR}:$${PATH}:${LOCALDIR}" >> ${CHROOTDIR}/mk
312	echo "if [ ! -f /tmp/.world_done ]; then" >> ${CHROOTDIR}/mk
313	echo "	cd /usr/src"			>> ${CHROOTDIR}/mk
314.if make(release)
315	echo "	(cd etc; make distrib-dirs distribution)" >> ${CHROOTDIR}/mk
316	echo "	make ${WORLD_FLAGS} world && \\"	>> ${CHROOTDIR}/mk
317.endif
318.if make(rerelease)
319	echo "	make ${WORLD_FLAGS} all install && \\" >> ${CHROOTDIR}/mk
320.endif
321	echo "	touch /tmp/.world_done"		>> ${CHROOTDIR}/mk
322	echo "fi"				>> ${CHROOTDIR}/mk
323	echo "cd /usr/src/release"		>> ${CHROOTDIR}/mk
324	echo "make \$${_RELTARGET}"		>> ${CHROOTDIR}/mk
325	echo "echo \">>> make ${.TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${CHROOTDIR}/mk
326	chmod 755 ${CHROOTDIR}/mk
327	chroot ${CHROOTDIR} /mk
328
329clean:
330	rm -rf boot_crunch release.[0-9]
331
332# Clean out ${_R} and make the directory structure.
333release.1:
334	mkdir -p ${_R}
335	-rm -rf ${_R}/* 2> /dev/null
336	-chflags -R noschg ${_R}/.
337	rm -rf ${_R}/*
338	mkdir ${RD}
339	mkdir ${RD}/floppies
340	mkdir ${RD}/trees
341	mkdir ${RD}/dists
342	mkdir ${RD}/kernels
343	for i in ${DISTRIBUTIONS} ; do \
344		mkdir ${RD}/trees/$$i && \
345		mkdir ${RD}/dists/$$i && \
346		mtree -deU -f ${MTREEFILES}/BSD.root.dist \
347		    -p ${RD}/trees/$$i > /dev/null && \
348		mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
349		    -p ${RD}/trees/$$i/usr > /dev/null && \
350		mtree -deU -f ${MTREEFILES}/BSD.include.dist \
351		    -p ${RD}/trees/$$i/usr/include > /dev/null && \
352		mtree -deU -f ${MTREEFILES}/BSD.var.dist \
353		    -p ${RD}/trees/$$i/var > /dev/null ; \
354	done
355	touch release.1
356
357# Install the system into the various distributions.
358release.2:
359	cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/trees/bin
360	cd ${.CURDIR}/.. && make distribworld DISTDIR=${RD}/trees
361.if exists(${.CURDIR}/../kerberosIV) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
362	cd ${.CURDIR}/../kerberosIV && ( \
363		make bootstrap &&\
364		make obj all help-distribute DISTDIR=${RD}/trees &&\
365		make kprog \
366	)
367.endif
368.if exists(${.CURDIR}/../kerberos5) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
369	cd ${.CURDIR}/../kerberos5 && ( \
370		make bootstrap &&\
371		make obj all help-distribute DISTDIR=${RD}/trees &&\
372		make kprog \
373	)
374.endif
375	-chflags -R noschg ${RD}/trees
376	touch release.2
377
378# Make and install the generic kernel(s).
379release.3:
380.for kernel in ${KERNELS}
381	-chflags -R noschg ${RD}/kernels/${kernel}
382	rm -rf ${RD}/kernels/${kernel}
383	rm -rf ${.CURDIR}/../sys/compile/${kernel}
384	cd ${.CURDIR} && ${MAKE} doSTDKERNEL KERNEL=${kernel} KODIR=/${kernel}
385	rm -rf ${.CURDIR}/../sys/compile/${kernel}
386	-mkdir ${RD}/trees/bin/boot/${kernel}
387	cp -p ${RD}/kernels/${kernel}/kernel ${RD}/trees/bin/boot/${kernel}
388.endfor
389	# Install a standard boot kernel+modules
390	mkdir -p ${RD}/trees/bin/boot/kernel
391	cp -Rp ${RD}/kernels/GENERIC/* ${RD}/trees/bin/boot/kernel
392	touch release.3
393
394# Make and install the three crunched binaries which live on the floppies.
395# You are not supposed to like this :-)
396#
397# NB: the "RELEASE_BUILD_FIXIT" magic prevents vi from including the
398# Tcl and Perl APIs.  See also /usr/src/usr.bin/vi/Makefile.
399# It also prevents ls linking against termcap by disabling color support.
400# See /usr/src/bin/ls/Makefile.
401release.4:
402	@mkdir -p /stand
403	rm -rf ${RD}/crunch
404	mkdir -p ${RD}/crunch
405	export RELEASE_BUILD_FIXIT=noway ; \
406	for j in ${CRUNCH_TARGETS} ; do \
407		rm -rf $${j}_crunch && \
408		mkdir $${j}_crunch && \
409		( cd $${j}_crunch && \
410		  ( ( [ -f ${.CURDIR}/${MACHINE}/$${j}_crunch.conf ] && \
411		    crunchgen ${.CURDIR}/${MACHINE}/$${j}_crunch.conf ) || \
412		    ( crunchgen ${.CURDIR}/$${j}_crunch.conf ) ) && \
413		  ${MAKE} -DRELEASE_CRUNCH -f $${j}_crunch.mk subclean all \
414		    NOCRYPT=yes "CFLAGS=${CFLAGS} -DCRUNCHED_BINARY") && \
415		mv $${j}_crunch/$${j}_crunch ${RD}/crunch/$${j} && \
416		true || { rm -rf $${j}_crunch ; false ; } ; \
417	done
418	touch release.4
419
420#
421# --==## Fix up the distributions. ##==--
422#
423release.5:
424	# Handle some grief caused by the munition braindeadness.
425	for i in bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/sendmail usr.sbin/tcpdump/tcpdump ; do \
426		( cd ${.CURDIR}/../$$i; \
427		  make -DNOCRYPT clean all distribute DISTDIR=${RD}/trees ) ; \
428	done
429
430	# Create any "synthetic dists" now.
431	@for i in ${DISTRIBUTIONS}; do \
432		if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
433			echo -n "Running $$i dist creation script... "; \
434			env OBJFORMAT=${OBJFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
435			echo "Done."; \
436		fi \
437	done \
438
439	# Remove all the directories we don't need.
440	-cd ${RD}/trees && \
441		find ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} -depth -type d -print | xargs rmdir
442	touch release.5
443
444#
445# --==## Package up the tarballs from assembled trees ##==--
446#
447release.6:
448	rm -rf ${RD}/dists
449	mkdir -p ${RD}/dists
450	@for i in ${DISTRIBUTIONS} ; \
451	do \
452		if [ -d ${RD}/trees/$${i} ] ; then \
453			cd ${.CURDIR} && $(MAKE) doTARBALL \
454				SD=${RD}/trees/$${i} \
455				TN=$$i TD=$$i ARG="." && \
456			echo "$${i} distribution is finished."; \
457		fi ; \
458	done
459	# More munition braindeadness.
460	( cd ${RD}/dists && \
461		if [ -f krb4/krb4.aa ] ; then \
462			mv krb4/krb4.* crypto && \
463			cat krb4/CHECKSUM.MD5 >> crypto/CHECKSUM.MD5 && \
464			rm -r krb4; \
465		fi )
466	( cd ${RD}/dists && \
467		if [ -f krb5/krb5.aa ] ; then \
468			mv krb5/krb5.* crypto && \
469			cat krb5/CHECKSUM.MD5 >> crypto/CHECKSUM.MD5 && \
470			rm -r krb5; \
471		fi )
472	touch release.6
473
474
475#
476# --==## Make source dists ##==--
477#
478release.7:
479.if !defined(NOSRC)
480	@cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \
481		TD=src TN=sbase ARG="[A-Z]*"
482	@for i in `cd /usr/src && echo [a-z]*` ; do \
483		if [ -d /usr/src/$$i ] ; then \
484			cd ${.CURDIR} && $(MAKE) doTARBALL \
485				TN=`echo s$$i | tr -d '.' | \
486				    sed -e 's/usr/u/' \
487					-e 's/kerberosIV/krb4/' \
488					-e 's/kerberos5/krb5/'` \
489				SD=/usr/src TD=src ARG="$$i" ; \
490		fi ; \
491	done
492.if defined(EXTRA_SRC)
493	@set ${EXTRA_SRC} && \
494	while [ $$# -ge 2 ] ; do \
495		if [ -d /usr/src/$$1 ] ; then \
496			cd ${.CURDIR} && $(MAKE) doTARBALL \
497				SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \
498		fi && shift && shift ; \
499	done
500.endif
501	if [ -d ${RD}/dists/crypto ] ; then ( cd ${RD}/dists/src && \
502		if [ -f ssecure.aa ] ; then mv ssecure.* ../crypto ; fi && \
503		if [ -f scrypto.aa ] ; then mv scrypto.* ../crypto ; fi && \
504		if [ -f skrb4.aa ] ; then mv skrb4.* ../crypto ; fi && \
505		if [ -f skrb5.aa ] ; then mv skrb5.* ../crypto ; fi ; ) ; fi
506	@echo "src distribution is finished."
507.endif
508	touch release.7
509
510# Complete the bootfd
511#
512# Now, just to get this picture down once and for all:
513#
514# +------------------------------------------------------------------------+
515# |boot.flp                                                                |
516# +-----+-----+------------------------------------------------------------+
517# |boot1|boot2|floppy filesystem "bootfd"                                  |
518# +-----+-----+-+--------------------------------------------------------+-+
519#               |kernel                                                  |
520#               +------------+-----------------------------------------+-+
521#                            |mfs filesystem "mfsfd"                   |
522#                            +-----------------------------------------+
523#
524
525release.8: write_mfs_in_kernel
526	rm -rf ${RD}/mfsfd
527	mkdir ${RD}/mfsfd
528	cd ${RD}/mfsfd && \
529		mkdir -p etc/defaults dev mnt stand/help
530	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \
531		DIR=${RD}/mfsfd/stand ZIP=false
532	( cd ${RD}/trees/bin/dev && \
533		ls console tty bpf0 ttyd0 ttyv0 ttyv1 ttyv2 ttyv3 null zero card0 card1 card2 card3 usb usb0 uhid0 ums0 ulpt0 ugen0 kbd0 kmem mem | \
534	cpio -dump ${RD}/mfsfd/dev )
535	( cd ${RD}/mfsfd/dev && rm -f *[swo]d*[bdefgh] )
536	( cd ${RD}/mfsfd && \
537	  for dir in bin sbin ; do \
538		ln -sf /stand $$dir; \
539	  done )
540	cp /sbin/dhclient-script ${RD}/mfsfd/stand
541	cp ${.CURDIR}/../etc/defaults/pccard.conf ${RD}/mfsfd/etc/defaults/pccard.conf
542	cp ${.CURDIR}/../etc/usbd.conf ${RD}/mfsfd/etc/usbd.conf
543	cd ${RD}/trees/bin && ls ${BOOT1} | cpio -dump ${RD}/mfsfd/stand
544	grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
545	    ${.CURDIR}/../etc/services > ${RD}/mfsfd/stand/etc/services
546	ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services
547	ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig
548	gzip -9c ${.CURDIR}/../COPYRIGHT > ${RD}/mfsfd/stand/help/COPYRIGHT.hlp.gz
549	@for i in README.TXT RELNOTES.TXT INSTALL.TXT UPGRADE.TXT HARDWARE.TXT; do \
550	  if [ -f ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ]; then \
551	     gzip -9c ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} > ${RD}/mfsfd/stand/help/$${i}.gz; \
552	  else \
553	     gzip -9c ${.CURDIR}/texts/$${i} > ${RD}/mfsfd/stand/help/$${i}.gz; \
554	  fi; \
555	done
556	-test -f ${.CURDIR}/install.cfg && cp ${.CURDIR}/install.cfg ${RD}/mfsfd
557	@mkdir -p ${RD}/mfsfd/boot
558	@cp /boot/boot* ${RD}/mfsfd/boot
559	@cp /boot/loader.help ${RD}/mfsfd/boot
560	@cd ${.CURDIR} && ${MAKE} createBOOTMFS 
561.if exists(${.CURDIR}/${MACHINE_ARCH}/drivers.conf)
562	@cd ${.CURDIR} && ${MAKE} doMODULES KERNEL=BOOTMFS KERNEL_KO=BOOTMFS KODIR=""
563.endif
564	@echo "Making the regular boot floppy."
565	@tar --exclude CVS -cf - -C /usr/src/usr.sbin/sysinstall help | \
566		tar xf - -C ${RD}/mfsfd/stand
567	@echo "Compressing doc files..."
568	@gzip -9 ${RD}/mfsfd/stand/help/*.hlp
569.if exists(${.CURDIR}/${MACHINE_ARCH}/drivers.conf)
570	@mkdir -p ${RD}/mfsfd/stand/modules
571	@perl ${.CURDIR}/scripts/driver-copy2.pl \
572		${.CURDIR}/${MACHINE_ARCH}/drivers.conf \
573		${RD}/kernels ${RD}/mfsfd/stand/modules
574.endif
575	sh -e ${.CURDIR}/scripts/doFS.sh -s mfsroot ${RD} ${MNT} \
576		${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL}
577	@gzip -9vc mfsroot > mfsroot.gz
578.if ${MACHINE} == "pc98"
579	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \
580		${RD} ${MNT} ${SMALLBOOTSIZE} mfsroot.gz \
581		${BOOTINODE} ${SMALLBOOTLABEL}
582	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern-small FDSIZE=SMALL
583	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern
584.else
585	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \
586		${RD} ${MNT} ${BOOTSIZE} mfsroot.gz ${BOOTINODE} ${BOOTLABEL}
587	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern
588	@cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot FDSIZE=BIG
589.endif
590	@rm mfsroot mfsroot.gz mfsroot.size
591	@echo "Regular and MFS boot floppies made."
592	touch release.8
593
594#
595# --==## Create a fixit floppy ##==--
596#
597release.9:
598	@echo "Making fixit floppy."
599	@rm -rf ${RD}/fixitfd
600	@mkdir ${RD}/fixitfd
601	@cd ${RD}/fixitfd && \
602		mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
603		usr/share/misc
604	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=fixit \
605		DIR=${RD}/fixitfd/stand ZIP=false
606	@( cd ${RD}/fixitfd/dev && \
607		cp ${RD}/trees/bin/dev/MAKEDEV MAKEDEV && \
608		chmod 755 MAKEDEV && \
609		sh MAKEDEV fixit )
610	@cp ${RD}/trees/bin/etc/spwd.db ${RD}/trees/bin/etc/group \
611		${RD}/trees/bin/etc/protocols ${RD}/fixitfd/etc
612	@cp ${RD}/trees/bin/usr/share/misc/scsi_modes \
613		${RD}/fixitfd/usr/share/misc
614	@cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
615	@cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
616	@cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
617	@chmod 555 ${RD}/fixitfd/stand/tar
618	@sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/fixit.flp ${RD} \
619		${MNT} ${FIXITSIZE} ${RD}/fixitfd ${FIXITINODE} ${FIXITLABEL}
620# Do our last minute floppies directory setup in a convenient place.
621	@cp ${.CURDIR}/texts/FLOPPIES.TXT ${RD}/floppies/README.TXT
622	@(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5)
623	touch release.9
624
625#
626# --==## Setup a suitable ftp-area ##==--
627#
628ftp.1:
629	@echo "Setting up FTP distribution area"
630	@mkdir -p ${FD}
631	-@ln -s . ${FD}/${BUILDNAME}
632	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
633	@cd ${RD}/dists && find . -print | cpio -dumpl ${FD}
634	@for i in ${DIST_DOCS}; do \
635	  if [ -f ${.CURDIR}/texts/$${i} ]; then \
636	     cp ${.CURDIR}/texts/$${i} ${FD}; \
637	  fi; \
638	  if [ -f ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ]; then \
639	     echo "=== Platform specifics for ${MACHINE_ARCH}" >> ${FD}/$${i}; \
640	     cat ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} >> ${FD}/$${i}; \
641	  fi; \
642	done
643	@echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
644.if !defined(NOPORTS)
645	@tar --exclude CVS -cBf - -C ${CD_DISC1} ports | tar -xBf - -C ${FD}
646.endif
647	touch ftp.1
648
649#
650# --==## Setup a suitable cdrom-area ##==--
651#
652cdrom.1:
653	@echo "Setting up CDROM distribution area"
654	@mkdir -p ${CD_DISC1} ${CD_DISC2}
655	@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1}
656	@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1}
657	@ln -f ${RD}/kernels/MFSKERNEL.boot ${CD_DISC1}/kernel
658	@for i in ${DISTRIBUTIONS} ; \
659	do \
660		if [ -d ${RD}/trees/$${i} ] ; then \
661			chflags -R noschg ${RD}/trees/$${i} || true ; \
662			( cd ${RD}/trees/$${i} && \
663			find . -depth -print | cpio -dumpl ${CD_DISC2} ) ; \
664		fi \
665	done
666	@rm -f ${CD_DISC2}/.profile
667	@cp ${.CURDIR}/fixit.profile ${CD_DISC2}/.profile
668	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
669	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
670	@for i in ${DIST_DOCS}; do \
671	  if [ -f ${.CURDIR}/texts/$${i} ]; then \
672	     cp ${.CURDIR}/texts/$${i} ${CD_DISC1}; \
673	  fi; \
674	  if [ -f ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ]; then \
675	     echo "=== Platform specifics for ${MACHINE_ARCH}" >> ${CD_DISC1}/$${i}; \
676	     cat ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} >> ${CD_DISC1}/$${i}; \
677	  fi; \
678        done
679.if ${MACHINE_ARCH} == "alpha"
680	@echo "Setting up Alpha CD disc1 for booting"
681	@cp -Rp ${RD}/image.boot/boot ${CD_DISC1}
682	@ln -f ${CD_DISC2}/boot/cdboot ${CD_DISC1}/boot
683	@ln -f ${CD_DISC1}/boot/loader.rc ${CD_DISC2}/boot
684	@ln -f ${CD_DISC1}/kernel ${CD_DISC2}/kernel
685.endif
686.if !defined(NOPORTS)
687	@-rm -rf /usr/ports/distfiles/*
688	@mkdir -p ${CD_DISC1}/ports && \
689	  tar --exclude CVS -czf ${CD_DISC1}/ports/ports.tgz -C /usr ports && \
690	  cp ${.CURDIR}/scripts/ports-install.sh ${CD_DISC1}/ports/install.sh \
691	  && (cd ${CD_DISC1}/ports; md5 * > CHECKSUM.MD5)
692.endif
693	touch cdrom.1
694
695doc.1:
696	@echo "Making docs..."
697	@for i in ${DOCPORTS}; do \
698	  cd /usr/ports/$$i && make all install clean JADETEX=no FORCE_PKG_REGISTER=yes; \
699	done
700	@cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/bin/usr/share/doc
701	touch doc.1
702
703# Various "subroutine" and other supporting targets.
704
705# RD=
706# SD=
707# TD=
708# ARG=
709doTARBALL:
710.if !defined(SD)
711	@echo "SD undefined in doTARBALL" && exit 1
712.endif
713.if !defined(TD)
714	@echo "TB undefined in doTARBALL" && exit 1
715.endif
716.if !defined(ARG)
717	@echo "ARG undefined in doTARBALL" && exit 1
718.endif
719	@rm -rf ${RD}/dists/${TD}/${TN}*
720	@mkdir -p ${RD}/dists/${TD}
721	@( cd ${SD} && \
722		tn=`echo ${TN} | tr '[A-Z]' '[a-z]' | cut -c1-8` && \
723		echo rolling ${TD}/$$tn tarball &&\
724		tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
725		${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \
726		sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn > \
727		   ${RD}/dists/${TD}/$$tn.inf && \
728		if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \
729		  cp -p ${.CURDIR}/scripts/$${TD}-install.sh ${RD}/dists/${TD}/install.sh; \
730		fi && \
731		if [ "${SD}" != "/usr/src" ]; then \
732			mtree -c -i -p ${SD}/${ARG} \
733			  -k gname,md5digest,mode,nlink,uname,size,link,type \
734			  > ${RD}/dists/${TD}/$$tn.mtree ; \
735		else \
736			true; \
737		fi; \
738		(cd ${RD}/dists/${TD}; \
739		   rm -f CHECKSUM.MD5; \
740		   md5 * > CHECKSUM.MD5) \
741	)
742
743doRELEASE:  release.1 release.2 ${DOCREL} release.3 release.4 release.5 \
744		release.6 release.7 release.8 release.9
745	@cd ${.CURDIR} && ${MAKE} ${EXTRAS}
746	@echo "Release done"
747
748floppies:
749	@cd ${.CURDIR} && ${MAKE} boot.flp
750	@cd ${.CURDIR} && ${MAKE} fixit.flp
751	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
752
753boot.flp:
754	@rm -f release.4 release.8
755	@cd ${.CURDIR} && ${MAKE} release.4 release.8 CRUNCH_TARGETS=boot
756
757fixit.flp:
758	@rm -f release.4 release.9
759	@cd ${.CURDIR} && ${MAKE} release.4 release.9 CRUNCH_TARGETS=fixit
760
761write_mfs_in_kernel:	${.CURDIR}/write_mfs_in_kernel.c
762	${CC} ${CFLAGS} -o write_mfs_in_kernel ${.CURDIR}/write_mfs_in_kernel.c
763
764installCRUNCH:
765.if !defined(CRUNCH)
766	@echo "CRUNCH undefined in installCRUNCH" && exit 1
767.endif
768.if !defined(DIR)
769	@echo "DIR undefined in installCRUNCH" && exit 1
770.endif
771.if !defined(ZIP)
772	@echo "ZIP undefined in installCRUNCH" && exit 1
773.endif
774	@if ${ZIP} ; then \
775		gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \
776	else \
777		ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \
778	fi
779	@chmod 555 ${DIR}/${CRUNCH}_crunch
780	@if [ -f ${.CURDIR}/${MACHINE}/${CRUNCH}_crunch.conf ] ; then \
781		for i in `crunchgen -l ${.CURDIR}/${MACHINE}/${CRUNCH}_crunch.conf` ; do \
782			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
783		done \
784	else \
785		for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
786			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
787		done \
788	fi
789
790#
791# --==## BOOTMFS config file ##==--
792#
793
794createBOOTMFS:
795	@cd ${.CURDIR}/../sys/${MACHINE}/conf && \
796	  sh ${.CURDIR}/scripts/dokern.sh ${FDSIZE} < ${KERNCONF} > BOOTMFS && \
797	  [ -r ${KERNCONF}.hints ] && cp ${KERNCONF}.hints BOOTMFS.hints
798.if ${MACHINE_ARCH} == "i386"
799	@echo "options  INTRO_USERCONFIG" >> \
800	  ${.CURDIR}/../sys/${MACHINE}/conf/BOOTMFS
801.endif
802.if defined(FDSIZE) && ${FDSIZE} == "BIG"
803	@echo "options MD_ROOT_SIZE=`cat mfsroot.size`" >> \
804	  ${.CURDIR}/../sys/${MACHINE}/conf/BOOTMFS
805.endif
806.if exists(${.CURDIR}/${MACHINE_ARCH}/drivers.conf)
807	@perl ${.CURDIR}/scripts/driver-remove.pl \
808		${.CURDIR}/${MACHINE_ARCH}/drivers.conf \
809		${.CURDIR}/../sys/${MACHINE}/conf/BOOTMFS
810.endif
811
812#
813# --==## Compile a kernel by name ${KERNEL} ##==--
814#
815# We don't erase the sys/compile/${KERNEL} directory, since somebody
816# may want to reuse it (release.8 presently)
817#
818doKERNEL:
819	@rm -f ${RD}/kernels/${KERNEL}
820	@cd ${.CURDIR}/../sys/${MACHINE}/conf && config ${KERNEL}
821	@cd ${.CURDIR}/../sys/compile/${KERNEL} && \
822			make kernel-depend && \
823			make ${KERNEL_FLAGS} ${KERNEL_KO} && \
824			make kernel-reinstall DESTDIR=${RD}/kernels && \
825			[ -r ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ] && \
826			cp ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ${RD}/kernels
827
828doMODULES:
829	@rm -f ${RD}/kernels/*.ko
830	@cd ${.CURDIR}/../sys/${MACHINE}/conf && config ${KERNEL}
831	@cd ${.CURDIR}/../sys/compile/${KERNEL} && \
832			make kernel-depend && \
833			make ${KERNEL_FLAGS} modules && \
834			make modules-reinstall DESTDIR=${RD}/kernels && \
835
836doSTDKERNEL:
837	@rm -f ${RD}/kernels/${KERNEL}
838	@cd ${.CURDIR}/../sys/${MACHINE}/conf && config ${KERNEL}
839	@cd ${.CURDIR}/../sys/compile/${KERNEL} && \
840			make depend && \
841			make ${KERNEL_FLAGS} KERNEL=${kernel} && \
842			make KERNEL=${kernel} DESTDIR=${RD}/kernels install && \
843			[ -r ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ] && \
844			cp ${.CURDIR}/../sys/${MACHINE}/conf/${KERNEL}.hints ${RD}/kernels
845
846#
847# --==## Put a filesystem into a BOOTMFS kernel ##==--
848#
849doMFSKERN:
850	@echo "Running doMFSKERN for ${FSIMAGE}"
851	@rm -f ${RD}/kernels/BOOTMFS.${FSIMAGE}
852	@cd ${.CURDIR} && ${MAKE} createBOOTMFS 
853	@cd ${.CURDIR} && ${MAKE} doKERNEL KERNEL=BOOTMFS KERNEL_KO=BOOTMFS KODIR=""
854	@rm -rf ${RD}/image.${FSIMAGE}
855	@mkdir  ${RD}/image.${FSIMAGE}
856	@cd ${RD}/kernels && \
857	  (chflags noschg BOOTMFS || true) && \
858	  strip BOOTMFS && \
859	  cp BOOTMFS BOOTMFS.${FSIMAGE} && \
860	  [ -r BOOTMFS.hints ] && mv BOOTMFS.hints BOOTMFS.${FSIMAGE}.hints
861	mv ${RD}/kernels/BOOTMFS ${RD}/image.${FSIMAGE}/kernel
862	@echo "Setting up /boot directory for ${FSIMAGE} floppy"
863	@mkdir -p ${RD}/image.${FSIMAGE}/boot
864	@cp /boot/loader ${RD}/image.${FSIMAGE}/boot
865	@[ -r ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints ] && \
866	  sed -e '/^hint/s/^/set /' -e '/^#/d' \
867	    ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints > \
868	    ${RD}/image.${FSIMAGE}/boot/device.hints && \
869	  echo "include /boot/device.hints" > ${RD}/image.${FSIMAGE}/boot/loader.rc
870	@echo "load /kernel" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
871.if !defined(FDSIZE) || ${FDSIZE} != "BIG"
872	@echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
873	@echo "echo Please insert MFS root floppy and press enter:" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
874	@echo "read" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
875	@echo "load -t mfs_root /mfsroot" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
876.endif
877	@echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
878	@echo "autoboot 10" >> ${RD}/image.${FSIMAGE}/boot/loader.rc
879.if ${MACHINE_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT}
880	@echo "-P" >> ${RD}/image.${FSIMAGE}/boot.config
881.endif
882.if defined(FDSIZE) && ${FDSIZE} == "BIG"
883	@echo "Writing MFS image into kernel for ${FSIMAGE} floppy"
884	@./write_mfs_in_kernel ${RD}/image.${FSIMAGE}/kernel mfsroot
885	@cp ${RD}/image.${FSIMAGE}/kernel ${RD}/kernels/MFSKERNEL.${FSIMAGE}
886.endif
887	@gzip -9v ${RD}/image.${FSIMAGE}/kernel
888	@rm -f ${RD}/floppies/${FSIMAGE}.flp
889.if defined(FDSIZE) && ${FDSIZE} == "BIG"
890	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
891		${RD} ${MNT} ${BIGBOOTSIZE} ${RD}/image.${FSIMAGE} \
892		${BOOTINODE} ${BIGBOOTLABEL}
893.elif defined(FDSIZE) && ${FDSIZE} == "SMALL"
894	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
895		${RD} ${MNT} ${SMALLBOOTSIZE} ${RD}/image.${FSIMAGE} \
896		${BOOTINODE} ${SMALLBOOTLABEL}
897.else
898	sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \
899		${RD} ${MNT} ${BOOTSIZE} ${RD}/image.${FSIMAGE} \
900		${BOOTINODE} ${BOOTLABEL}
901.endif
902	@echo "Created ${RD}/floppies/${FSIMAGE}.flp"
903
904.include <bsd.prog.mk>
905