3 # make release [BUILDNAME=somename] CHROOTDIR=/some/dir CVSROOT=/cvs/dir \
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).
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.
16 # Note: If you add options to this file, please keep release(7) updated!
18 # Set these, release builder!
21 #BUILDNAME=8.0-CURRENT
23 # Automatic SNAP versioning:
26 BUILDNAME?
=${BASE}-${DATE}-SNAP
28 #CHROOTDIR=/junk/release
29 # If this is a -stable snapshot, then set
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.
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
42 # To add other options to the CVS subcommands (co,up), set
43 #CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'"
45 # To add other options to the CVS command, set
48 # To prefix the cvs command
49 #CVSPREFIX="/usr/bin/time"
51 # Where the CVS repository is
54 # Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
55 # are building an official release. Otherwise, we are building for
57 .if defined
(RELEASETAG
)
58 ISRELEASE
!= expr
"${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true
60 # Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
61 AUXRELEASETAG
!= echo
${RELEASETAG} | sed
-e
's/^RELENG_/RELEASE_/' -e
's/_RELEASE$$//'
62 DOCRELEASETAG?
= ${AUXRELEASETAG}
63 PORTSRELEASETAG?
= ${AUXRELEASETAG}
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.
73 TARGET_ARCH?
= ${MACHINE_ARCH}
74 .if
${TARGET_ARCH} == ${MACHINE_ARCH}
77 TARGET?
= ${TARGET_ARCH}
79 CROSSENV
= TARGET_ARCH
=${TARGET_ARCH} TARGET
=${TARGET}
80 CROSSMAKE
= ${MAKE} ${CROSSENV}
81 NATIVEMAKE
= ${MAKE} TARGET_ARCH
=${MACHINE_ARCH} TARGET
=${MACHINE}
83 # If you are using a local CVS repository with components stored in
84 # non-standard modules, override these on the make commandline or
86 RELEASESRCMODULE?
= src
87 RELEASEDOCMODULE?
= doc
88 RELEASEPORTSMODULE?
= ports
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).
101 # Setting this also disables building of release note documentation
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
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
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
120 # Modify this definition if you want the release notes
121 # and other release documentation in a language other than English.
122 RELNOTES_LANG?
= en_US.ISO8859-1
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
)
129 DOMINIMALDOCPORTS
= YES
130 .
include "Makefile.inc.docports"
131 RELEASEPORTSMODULE
= ${MINIMALDOCPORTS} ports
/sysutils
/cdrtools
136 .if
!defined
(DOMINIMALDOCPORTS
) ||
${DOMINIMALDOCPORTS} != "YES"
142 # Doing 'make index' in /usr/ports requires Perl.
143 MAKEINDEXPORTS
= 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
149 DOCPORTS
= textproc
/docproj
150 # Set this to wherever the distfiles required by release procedures.
151 .if defined
(DOCDISTFILES
)
152 # Respect DOCDISTFILES which is used before.
153 RELEASEDISTFILES?
= ${DOCDISTFILES}
155 RELEASEDISTFILES?
= ${.CURDIR
}/..
/..
/ports
/distfiles
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.
159 AUTO_KEYBOARD_DETECT?
= 0
162 DIST_DOCS_ARCH_INDEP
= hardware readme relnotes errata
166 # Things which without too much trouble can be considered variables
167 # BASE_DISTS are special in that they get full /etc installation sets.
169 OTHER_DISTS?
= catpages manpages games proflibs dict
info doc
${ARCH_DISTS}
171 .if
${TARGET_ARCH} == "amd64"
174 DISTRIBUTIONS?
= ${BASE_DISTS} ${OTHER_DISTS}
177 # Build and package both GENERIC and SMP kernels if the target
178 # has both configuration files. Otherwise only GENERIC is done.
180 .if exists
(${.CURDIR
}/..
/sys
/${TARGET}/conf
/SMP
)
181 KERNELS_BASE?
= GENERIC SMP
183 KERNELS_BASE?
= GENERIC
186 # mountpoint for filesystems.
189 # Various floppy image parameters.
193 .if
${TARGET_ARCH} == "i386"
197 .if
${TARGET} == "pc98"
198 SMALLFLOPPYSIZE
= 1200
199 SMALLFLOPPYSPLITSIZE
= 1152
200 SMALLFLOPPYLABEL
= fd1200
204 FLOPPYSPLITSIZE
= 1392
211 .elif
${TARGET_ARCH} == "sparc64"
217 .elif
${TARGET_ARCH} == "ia64"
223 .elif
${TARGET_ARCH} == "amd64"
226 FLOPPYSPLITSIZE
= 1392
235 .elif
${TARGET_ARCH} == "powerpc"
242 .if defined
(NO_FLOPPIES
)
246 .if exists
(/sbin
/bsdlabel
)
249 DISKLABEL?
= disklabel
252 ZIPPER
= gzip
-9 --no-name
253 ZIPNSPLIT
= ${ZIPPER} -c | split
-b
1392k
-
255 # Things which may get you into trouble if you change them
256 MTREEFILES
= ${.CURDIR
}/..
/etc
/mtree
259 RND
= ${RD}/release.doc
262 CD_BOOT
= ${CD}/bootonly
263 CD_DISC1
= ${CD}/disc1
264 CD_DISC2
= ${CD}/disc2
268 .if defined
(SEPARATE_LIVEFS
)
269 CD_LIVEFS
= ${CD}/livefs
271 CD_LIVEFS
= ${CD_DISC1}
273 _MK?
= ${CHROOTDIR}/mk
275 # Where the bootstrap ports (see DOCPORTS) get installed.
276 LOCALDIR
= /usr
/local
/bin
278 .if
${TARGET} != ${MACHINE} && ${DISKLABEL} == "bsdlabel"
279 DOFS_SH
= ${.CURDIR
}/scripts
/doFS.sh
${DISKLABEL} ${TARGET}
281 DOFS_SH
= ${.CURDIR
}/scripts
/doFS.sh
${DISKLABEL} ""
285 .if
${TARGET_ARCH} == "i386"
286 CRUNCH_TARGETS
+=fixit
287 .if
${TARGET} == "pc98"
288 CRUNCH_TARGETS
+=fixit-small
292 .if defined
(MAKE_FLOPPIES
)
294 .if
${TARGET_ARCH} == "i386"
300 .if
!defined
(NOCDROM
)
301 EXTRAS
+= cdrom
.1 cdrom
.2 cdrom
.3
302 .if defined
(MAKE_ISOS
)
305 .if
${TARGET} == "pc98"
316 .if
!make
(release
) && !make
(rerelease
) && !make
(package-split
)
317 BINMAKE
!= cd
${.CURDIR
}/..
; ${MAKE} -V BINMAKE
318 WMAKEENV
!= cd
${.CURDIR
}/..
; \
319 ${BINMAKE} ${CROSSENV} -f Makefile.inc1
-V WMAKEENV
320 WMAKE
= ${WMAKEENV} ${BINMAKE}
324 .if defined
(RELEASETAG
)
325 CVS_SRCARGS
+= -r
${RELEASETAG}
329 .if defined
(DOCRELEASETAG
)
330 CVS_DOCARGS
+= -r
${DOCRELEASETAG}
334 .if defined
(PORTSRELEASETAG
)
335 CVS_PORTSARGS
+= -r
${PORTSRELEASETAG}
338 WORLDDIR?
= ${.CURDIR
}/..
341 .if
!defined
(CHROOTDIR
) ||
!defined
(BUILDNAME
) ||
!defined
(CVSROOT
)
342 @echo
"To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false
344 .if defined
(NOPORTSATALL
) && !defined
(NODOC
)
345 @echo
"Ports are required for building the docs. Either set NODOC or"
346 @echo
"unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!"
349 .if defined
(LOCAL_PATCHES
) && !empty
(LOCAL_PATCHES
)
350 .for p in
${LOCAL_PATCHES}
352 @echo
"The patch file ${p} does not exist!"
357 .if defined
(LOCAL_SCRIPT
) && !exists
(${LOCAL_SCRIPT})
358 @echo
"The local script ${LOCAL_SCRIPT} does not exist!"
362 .if exists
(${CHROOTDIR})
363 # The first command will fail on a handful of files that have their schg
364 # flags set. But it greatly speeds up the next two commands.
365 # NB: clear any vestigial devfs mount, just in case
366 -umount
${CHROOTDIR}/dev
> /dev
/null
2>&1
367 -rm -rf
${CHROOTDIR} 2>/dev
/null
368 -chflags
-R
0 ${CHROOTDIR}/.
371 mkdir
-p
${CHROOTDIR}
372 @echo
">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`"
373 cd
${WORLDDIR} && ${NATIVEMAKE} -DWITHOUT_GAMES
-DWITHOUT_HTML
-DWITHOUT_LIB32 \
374 -DWITHOUT_MAN
-DWITHOUT_NLS
-DWITHOUT_PROFILE installworld DESTDIR
=${CHROOTDIR}
375 cd
${WORLDDIR} && ${NATIVEMAKE} distribution DESTDIR
=${CHROOTDIR}
376 if
[ -f
/etc
/resolv.conf
]; then \
377 cp
-p
/etc
/resolv.conf
${CHROOTDIR}/etc
; \
379 .if defined
(EXTLOCALDIR
)
380 rm -rf
${CHROOTDIR}/usr
/local
381 cd
${CHROOTDIR}/usr
&& cp
-R
-H
${EXTLOCALDIR} local
383 rm -rf
${CHROOTDIR}/usr
/src
384 .if defined
(EXTSRCDIR
)
385 cd
${CHROOTDIR}/usr
&& \
386 cp
-R
-H
${EXTSRCDIR} src
388 cd
${CHROOTDIR}/usr
&& \
389 ${CVSPREFIX} cvs
-R
${CVSARGS} -d
${CVSROOT} \
390 co ${CVSCMDARGS} ${CVS_SRCARGS} ${RELEASESRCMODULE}
392 .if defined
(LOCAL_PATCHES
) && !empty
(LOCAL_PATCHES
)
393 .for p in
${LOCAL_PATCHES}
394 patch
-d
${CHROOTDIR}/usr
/${RELEASESRCMODULE} ${PATCH_FLAGS} < ${p}
397 .if defined
(LOCAL_SCRIPT
)
398 cd
${CHROOTDIR} && env CHROOTDIR
=${CHROOTDIR} BUILDNAME
=${BUILDNAME} \
399 RELEASETAG
=${RELEASETAG} ${LOCAL_SCRIPT}
401 rm -rf
${CHROOTDIR}/usr
/ports
402 .if
!defined
(NOPORTSATALL
)
403 .if defined
(EXTPORTSDIR
)
404 cd
${CHROOTDIR}/usr
&& cp
-R
-H
${EXTPORTSDIR} ports
405 # If there are distfiles downloaded removing them
406 rm -rf ports
/distfiles
/*
408 cd
${CHROOTDIR}/usr
&& ${CVSPREFIX} cvs
-R
${CVSARGS} -d
${CVSROOT} \
409 co ${CVSCMDARGS} ${CVS_PORTSARGS} ${RELEASEPORTSMODULE}
413 rm -rf
${CHROOTDIR}/usr
/doc
414 .if defined
(EXTDOCDIR
)
415 cd
${CHROOTDIR}/usr
&& cp
-R
-H
${EXTDOCDIR} doc
417 cd
${CHROOTDIR}/usr
&& ${CVSPREFIX} cvs
-R
${CVSARGS} -d
${CVSROOT} \
418 co ${CVSCMDARGS} ${CVS_DOCARGS} ${RELEASEDOCMODULE}
420 if
[ -d
${RELEASEDISTFILES}/ ]; then \
421 cp
-rp
${RELEASEDISTFILES} ${CHROOTDIR}/usr
/ports
/distfiles
; \
423 mkdir
-p
${CHROOTDIR}/usr
/ports
/distfiles
; \
425 .if
!defined
(NO_PREFETCHDISTFILES
)
426 @cd
${.CURDIR
} && ${MAKE} fetch-distfiles
431 .if
!defined
(RELEASENOUPDATE
) && !defined
(EXTSRCDIR
)
432 .if
!defined
(RELEASETAG
)
433 cd
${CHROOTDIR}/usr
/src
&& ${CVSPREFIX} cvs
-R
${CVSARGS} -q \
434 update
${CVSCMDARGS} -P
-d
-A
436 cd
${CHROOTDIR}/usr
/src
&& ${CVSPREFIX} cvs
-R
${CVSARGS} -q \
437 update
${CVSCMDARGS} -P
-d
-r
${RELEASETAG}
439 rm -f
${CHROOTDIR}/tmp
/.world_done
440 .if
!defined
(NOPORTS
) && !defined
(EXTPORTSDIR
)
441 cd
${CHROOTDIR}/usr
/ports
&& ${CVSPREFIX} cvs
-R
${CVSARGS} -q \
442 update
${CVSCMDARGS} -P
-d
443 rm -f
${CHROOTDIR}/tmp
/.skip_ports_index
445 .if defined
(DOMINIMALDOCPORTS
) && ${DOMINIMALDOCPORTS} == "YES"
446 for i in
${MINIMALDOCPORTS}; do \
447 ( cd
${CHROOTDIR}/usr
/$$i && ${CVSPREFIX} cvs
-R
${CVSARGS} -q \
448 update
${CVSCMDARGS} -P
-d
) ; \
452 cd
${CHROOTDIR}/usr
/doc
&& ${CVSPREFIX} cvs
-R
${CVSARGS} -q \
453 update
${CVSCMDARGS} -P
-d
457 # Add version information to those things that need it.
458 if
[ ! -f
${CHROOTDIR}/tmp
/.world_done
]; then \
459 cd
${CHROOTDIR}/usr
/src
/sys
/conf
&& \
460 mv newvers.sh foo
&& \
461 sed
"s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo
> newvers.sh
&& \
464 -test -f
install.cfg
&& cp
install.cfg
${CHROOTDIR}/usr
/src
/release
465 echo
"#!/bin/sh" > ${_MK}
466 echo
"set -ex" >> ${_MK}
467 echo
"trap 'umount /dev || true' 0" >> ${_MK}
468 echo
"_RELTARGET=\$${1:-doRELEASE}" >> ${_MK}
470 AUTO_KEYBOARD_DETECT \
500 echo
"export ${var}=\"${${var}}\"" >> ${_MK}
503 # Don't remove this, or the build will fall over!
504 echo
"export RELEASEDIR=${_R}" >> ${_MK}
505 echo
"export PATH=/bin:/usr/bin:/sbin:/usr/sbin:${LOCALDIR}" >> ${_MK}
506 echo
"export MANBUILDCAT=YES" >> ${_MK}
507 # NB: these may fail if the host is running w/o devfs
508 echo
"umount /dev >/dev/null 2>&1 || true" >> ${_MK}
509 echo
"mount -t devfs devfs /dev >/dev/null 2>&1 || true" >> ${_MK}
510 echo
"if [ ! -c /dev/null ]; then" >> ${_MK}
511 echo
" echo /dev/null is not a device!" >> ${_MK}
512 echo
" exit 1" >> ${_MK}
514 echo
"if [ -x /etc/rc.d/ldconfig ]; then" >> ${_MK}
515 echo
" /etc/rc.d/ldconfig start" >> ${_MK}
516 echo
"else" >> ${_MK}
517 echo
" ldconfig /lib /usr/lib /usr/local/lib || true" >> ${_MK}
519 echo
"if [ ! -f /tmp/.world_done ]; then" >> ${_MK}
520 echo
" cd /usr/src" >> ${_MK}
521 echo
" ${CROSSMAKE} ${WORLD_FLAGS} -DNO_CLEAN buildworld && \\" >> ${_MK}
522 echo
" touch /tmp/.world_done || exit 1" >> ${_MK}
524 echo
"if [ ! -f /tmp/.skip_ports_index ]; then" >> ${_MK}
525 echo
" echo \">>> make index started on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
526 echo
" for i in ${MAKEINDEXPORTS}" >> ${_MK}
528 echo
" cd /usr/ports/\$${i}" >> ${_MK}
529 echo
" env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \\" >> ${_MK}
530 echo
" make all install clean BATCH=yes FORCE_PKG_REGISTER=yes" >> ${_MK}
531 echo
" done" >> ${_MK}
532 echo
" cd /usr/ports" >> ${_MK}
533 echo
" rm -f INDEX*" >> ${_MK}
534 echo
" make index -DINDEX_PRISTINE" >> ${_MK}
535 echo
" rm -f INDEX*.tmp" >> ${_MK}
536 echo
" touch /tmp/.skip_ports_index" >> ${_MK}
537 echo
" echo \">>> make index finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
539 echo
"cd /usr/src/release" >> ${_MK}
540 echo
"make obj" >> ${_MK}
541 echo
"make \$${_RELTARGET}" >> ${_MK}
542 echo
"echo \">>> make ${.TARGET} for ${TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
545 touch
${CHROOTDIR}/tmp
/.skip_ports_index
547 # Ensure md.ko is loaded if md(4) is not statically compiled into
549 -mdconfig
2>/dev
/null
550 env
-i
/usr
/sbin
/chroot
`dirname ${_MK}` /`basename ${_MK}`
553 rm -rf
${CRUNCH_TARGETS
:S
/$/_crunch
/} release.
[0-8] ${EXTRAS}
556 @for i in
${MAKEINDEXPORTS}; do \
557 cd
${CHROOTDIR}/usr
/ports
/$$i && \
558 make PORTSDIR
=${CHROOTDIR}/usr
/ports BATCH
=yes \
559 checksum-recursive
; \
561 @for i in
${DOCPORTS}; do \
562 cd
${CHROOTDIR}/usr
/ports
/$$i && \
563 make PORTSDIR
=${CHROOTDIR}/usr
/ports BATCH
=yes \
564 WITHOUT_X11
=yes JADETEX
=no WITHOUT_PYTHON
=yes \
565 checksum-recursive
; \
568 # Clean out ${_R} and make the directory structure.
571 -rm -rf
${_R}/* 2> /dev
/null
572 -chflags
-R noschg
${_R}/.
575 .if defined
(MAKE_FLOPPIES
)
579 for i in
${DISTRIBUTIONS}; do \
580 mkdir
${RD}/trees
/$$i && \
581 mtree
-deU
-f
${MTREEFILES}/BSD.root.
dist \
582 -p
${RD}/trees
/$$i > /dev
/null
&& \
583 mtree
-deU
-f
${MTREEFILES}/BSD.usr.
dist \
584 -p
${RD}/trees
/$$i/usr
> /dev
/null
&& \
585 mtree
-deU
-f
${MTREEFILES}/BSD.
include.
dist \
586 -p
${RD}/trees
/$$i/usr
/include > /dev
/null
&& \
587 mtree
-deU
-f
${MTREEFILES}/BSD.var.
dist \
588 -p
${RD}/trees
/$$i/var
> /dev
/null
; \
591 for i in
${KERNELS_BASE} ${KERNELS}; do \
592 mkdir
-p
${RD}/kernels
/$${i}; \
596 # Install the system into the various distributions.
598 cd
${.CURDIR
}/..
&& ${CROSSMAKE} distrib-dirs DESTDIR
=${RD}/trees
/base
599 cd
${.CURDIR
}/..
&& ${CROSSMAKE} ${WORLD_FLAGS} distributeworld \
603 # Make and install the generic kernel(s).
605 .for kernel in
${KERNELS_BASE} ${KERNELS}
607 ${CROSSMAKE} ${KERNEL_FLAGS} \
608 KERNCONF
=${kernel} kernel \
609 DESTDIR
=${RD}/kernels KODIR
=/${kernel}
613 # Make and install the three crunched binaries which live on the floppies.
614 # You are not supposed to like this :-)
617 mkdir
-p
${RD}/crunch
618 .for j in
${CRUNCH_TARGETS}
619 .if exists
(${.CURDIR
}/${TARGET}/${j}_crunch.conf
)
622 cd
${j}_crunch
; ${WMAKEENV} MAKEFLAGS
="-m ${.CURDIR}/../share/mk" \
623 NO_WERROR
= crunchgen
-o \
624 ${.CURDIR
}/${TARGET}/${j}_crunch.conf
625 cd
${j}_crunch
; ${WMAKE} -f
${j}_crunch.mk subclean
626 cd
${.CURDIR
}/..
; ${BINMAKE} -f Makefile.inc1 _build-tools
627 cd
${j}_crunch
; CFLAGS
="-Os -pipe" ${WMAKE} -f
${j}_crunch.mk \
629 ${WMAKEENV} strip -R .comment
${j}_crunch
/${j}_crunch
630 mv
${j}_crunch
/${j}_crunch
${RD}/crunch
/${j}
636 # --==## Fix up the distributions. ##==--
639 # Create any "synthetic dists" now.
640 @for i in
${DISTRIBUTIONS}; do \
641 if
[ -f
${.CURDIR
}/scripts
/$${i}-make.sh
]; then \
642 echo
-n
"Running $$i dist creation script... "; \
643 env RD
=${RD} sh
${.CURDIR
}/scripts
/$${i}-make.sh || echo
"$$i distribution script returned bad status."; \
648 # Remove all the directories we don't need.
650 (find
${OTHER_DISTS} -path
'*/var/empty' | xargs chflags noschg
; \
651 find
${OTHER_DISTS} -depth
-type d
-empty
-print | xargs rmdir
)
655 # --==## Package up the tarballs from assembled trees ##==--
660 @for i in
${DISTRIBUTIONS} ; \
662 if
[ -d
${RD}/trees
/$${i} ] ; then \
663 cd
${.CURDIR
} && $(MAKE
) doTARBALL \
664 SD
=${RD}/trees
/$${i} \
665 TN
=$$i TD
=$$i ARG
="." && \
666 echo
"$${i} distribution is finished."; \
669 @for i in
${KERNELS_BASE} ${KERNELS} ; \
671 if
[ -d
${RD}/kernels
/$${i} ] ; then \
672 cd
${.CURDIR
} && $(MAKE
) doTARBALL \
674 TN
=$$i TD
=kernels ARG
="$$i" && \
675 echo
"$${i} distribution is finished."; \
678 .if
!defined
(NOPORTS
)
679 # XXX: Inline stripped version of doTARBALL
680 @
rm -rf
${RD}/dists
/ports
/ports
*
681 @mkdir
-p
${RD}/dists
/ports
682 @echo rolling ports
/ports tarball
683 @
tar --exclude CVS
--exclude .svn
--exclude
'ports/distfiles/*' \
684 -czf
${RD}/dists
/ports
/ports.tgz
-C
/usr ports
685 @cp
${.CURDIR
}/scripts
/ports-install.sh
${RD}/dists
/ports
/install.sh
686 @
(cd
${RD}/dists
/ports
; \
687 rm -f CHECKSUM.MD5 CHECKSUM.SHA256
; \
688 md5
* > .CHECKSUM.MD5
; \
689 sha256
* > .CHECKSUM.SHA256
; \
690 mv .CHECKSUM.MD5 CHECKSUM.MD5
; \
691 mv .CHECKSUM.SHA256 CHECKSUM.SHA256
)
692 @echo
"ports distribution is finished."
698 # --==## Make source dists ##==--
702 @cd
${.CURDIR
} && $(MAKE
) doTARBALL SD
=/usr
/src \
703 TD
=src TN
=sbase ARG
="[A-Z]*"
704 @for i in
`cd /usr/src && echo [a-z]*` ; do \
705 if
[ -d
/usr
/src
/$$i ] ; then \
706 cd
${.CURDIR
} && $(MAKE
) doTARBALL \
707 TN
=`echo s$$i | tr -d '.' | \
709 -e 's/kerberos5/krb5/'` \
710 SD
=/usr
/src TD
=src ARG
="$$i" ; \
713 .if defined
(EXTRA_SRC
)
714 @set
${EXTRA_SRC} && \
715 while
[ $$# -ge 2 ] ; do \
716 if
[ -d
/usr
/src
/$$1 ] ; then \
717 cd
${.CURDIR
} && $(MAKE
) doTARBALL \
718 SD
=/usr
/src TN
="s$$2" TD
=src ARG
="$$1" ; \
719 fi
&& shift
&& shift
; \
722 (cd
${RD}/dists
/src
; \
723 rm -f CHECKSUM.MD5 CHECKSUM.SHA256
; \
724 md5
* > .CHECKSUM.MD5
; \
725 sha256
* > .CHECKSUM.SHA256
; \
726 mv .CHECKSUM.MD5 CHECKSUM.MD5
; \
727 mv .CHECKSUM.SHA256 CHECKSUM.SHA256
)
728 @echo
"src distribution is finished."
732 # Build the memory root filesystem.
734 cp
${RD}/trees
/base
/etc
/disktab
/etc
738 mkdir
-p etc
/defaults dev mnt stand
/etc
/defaults stand
/help \
740 @cd
${.CURDIR
} && $(MAKE
) installCRUNCH CRUNCH
=boot \
741 DIR
=${RD}/mfsfd
/stand ZIP
=false
742 ( cd
${RD}/mfsfd
&& \
743 for
dir in bin sbin
; do \
744 ln
-sf
/stand
$$dir; \
746 cp
${RD}/trees
/base
/sbin
/dhclient-script
${RD}/mfsfd
/stand
747 cp
${.CURDIR
}/..
/etc
/master.passwd
${RD}/mfsfd
/etc
/master.passwd
748 cp
${RD}/trees
/base
/etc
/*pwd.db
${RD}/mfsfd
/etc
/
749 ( for F in defaults
/rc.conf netconfig protocols
; do \
750 sed
-e
'/^#.*$$/d' -e
's/[:space:]*#.*$$//g' \
751 ${RD}/trees
/base
/etc
/$$F > ${RD}/mfsfd
/stand
/etc
/$$F ; \
753 grep
-E
'^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
754 ${RD}/trees
/base
/etc
/services | \
755 sed
-e
'/^#.*$$/d' -e
's/[:space:]*#.*$$//g' \
756 > ${RD}/mfsfd
/stand
/etc
/services
757 grep
'operator' ${RD}/trees
/base
/etc
/group \
758 > ${RD}/mfsfd
/stand
/etc
/group
759 ln
${RD}/mfsfd
/stand
/etc
/services
${RD}/mfsfd
/etc
/services
760 ln
${RD}/mfsfd
/stand
/etc
/group
${RD}/mfsfd
/etc
/group
761 ln
${RD}/mfsfd
/stand
/etc
/netconfig
${RD}/mfsfd
/etc
/netconfig
762 cp
${RD}/trees
/base
/COPYRIGHT
${RD}/mfsfd
/stand
/help
/COPYRIGHT.hlp
764 @for i in
${DIST_DOCS_ARCH_INDEP}; do \
765 cp
${RND}/${RELNOTES_LANG}/$$i/article.txt \
766 ${RD}/mfsfd
/stand
/help
/`echo $${i} | tr 'a-z' 'A-Z'`.TXT
; \
768 @for i in
${DIST_DOCS_ARCH_DEP}; do \
769 cp
${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
770 ${RD}/mfsfd
/stand
/help
/`echo $${i} | tr 'a-z' 'A-Z'`.TXT
; \
773 -test -f
${.CURDIR
}/install.cfg \
774 && cp
${.CURDIR
}/install.cfg
${RD}/mfsfd
775 @mkdir
-p
${RD}/mfsfd
/boot
776 .if
${TARGET_ARCH} != "ia64" && ${TARGET_ARCH} != "powerpc"
777 @cp
${RD}/trees
/base
/boot
/boot
* ${RD}/mfsfd
/boot
779 .if
${TARGET} == "i386" ||
${TARGET_ARCH} == "amd64"
780 @cp
${RD}/trees
/base
/boot
/mbr
${RD}/mfsfd
/boot
782 @
tar --exclude CVS
--exclude .svn
-cf
- \
783 -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 @
${ZIPPER} -fv
${RD}/mfsroot
/mfsroot
791 KERNFLOPPYSET
= ${RD}/floppyset
/kern
/kernel.gz
792 .if defined
(SMALLFLOPPYSIZE
)
793 SMALLKERNFLOPPYSET
= ${RD}/floppyset
/kern-small
/kernel.gz
795 .if defined
(SPLIT_MFSROOT
)
796 MFSROOTFLOPPYSET
= ${RD}/floppyset
/mfsroot
/mfsroot.gz
797 .if defined
(SMALLFLOPPYSIZE
)
798 SMALLMFSROOTFLOPPYSET
= ${RD}/floppyset
/mfsroot-small
/mfsroot.gz
802 # Build boot and install floppies.
804 @
${ZIPPER} -c
${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 \
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 \
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" \
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 \
843 .
endif # SPLIT_MFSROOT
846 # Build fixit floppy.
848 @echo
"Making fixit floppy."
849 @
rm -rf
${RD}/fixitfd
851 @cd
${RD}/fixitfd
&& \
852 mkdir
-p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
854 @cp
${RD}/trees
/base
/etc
/spwd.db
${RD}/trees
/base
/etc
/group \
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
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}
878 # Do our last minute floppies directory setup
880 @
(cd
${RD}/floppies
; md5
*.flp
> CHECKSUM.MD5
)
881 @
(cd
${RD}/floppies
; sha256
*.flp
> CHECKSUM.SHA256
)
885 # --==## Setup a suitable ftp-area ##==--
888 @echo
"Setting up FTP distribution area"
890 -@ln
-s .
${FD}/${BUILDNAME}
891 .if defined
(MAKE_FLOPPIES
)
892 @cd
${RD} && find floppies
-print | cpio
-dumpl
${FD}
894 @cd
${RD}/dists
&& find .
-print | cpio
-dumpl
${FD}
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
; \
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
; \
908 @cp
${RND}/${RELNOTES_LANG}/readme
/docbook.css
${FD}
910 @echo
"CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
913 # Build a live filesystem cdrom image
915 @echo
"Building CDROM live filesystem image"
916 @mkdir
-p
${CD_LIVEFS}
917 @for i in
${DISTRIBUTIONS} ; \
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} ) ; \
925 @echo
"Copy GENERIC kernel to boot area"
926 @cp
-Rp
${RD}/kernels
/GENERIC
/ ${CD_LIVEFS}/boot
/kernel
927 @
rm -f
${CD_LIVEFS}/boot
/kernel
/*.symbols
928 @
rm -f
${CD_LIVEFS}/.profile
929 @cp
${.CURDIR
}/fixit.profile
${CD_LIVEFS}/.profile
930 @ln
-sf
/rescue
${CD_LIVEFS}/stand
931 @echo
"Setting up CDROM boot area"
932 @
rm -f
${CD_LIVEFS}/boot
/loader.conf
933 @cp
${RD}/mfsroot
/mfsroot.gz
${CD_LIVEFS}/boot
/mfsroot.gz
934 @echo
'mfsroot_load="YES"' > ${CD_LIVEFS}/boot
/loader.conf
935 @echo
'mfsroot_type="mfs_root"' >> ${CD_LIVEFS}/boot
/loader.conf
936 @echo
'mfsroot_name="/boot/mfsroot"' >> ${CD_LIVEFS}/boot
/loader.conf
937 .if exists
(${RD}/trees
/base
/boot
/device.hints
)
938 # Break the link to device.hints so we can modify it
939 @
rm -f
${CD_LIVEFS}/boot
/device.hints
940 @cp
${RD}/trees
/base
/boot
/device.hints
${CD_LIVEFS}/boot
/device.hints
942 @echo
"CD_VERSION = ${BUILDNAME}" > ${CD_LIVEFS}/cdrom.inf
945 # Build disc1 and disc2 cdrom images
947 @echo
"Building CDROM disc1 filesystem image"
948 @mkdir
-p
${CD_DISC1}/${BUILDNAME}
949 .if defined
(MAKE_FLOPPIES
)
950 @cd
${RD} && find floppies
-print | cpio
-dumpl
${CD_DISC1}
952 @cd
${RD}/dists
&& find .
-print | cpio
-dumpl
${CD_DISC1}/${BUILDNAME}
954 @for i in
${DIST_DOCS_ARCH_INDEP}; do \
955 cp
${RND}/${RELNOTES_LANG}/$$i/article.txt \
956 ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT
; \
957 cp
${RND}/${RELNOTES_LANG}/$$i/article.html \
958 ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM
; \
960 @for i in
${DIST_DOCS_ARCH_DEP}; do \
961 cp
${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
962 ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT
; \
963 cp
${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
964 ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM
; \
966 @cp
${RND}/${RELNOTES_LANG}/readme
/docbook.css
${CD_DISC1}
968 .if defined
(SEPARATE_LIVEFS
)
969 @cp
-Rp
${CD_LIVEFS}/boot
${CD_DISC1}
970 @echo
"CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
972 @echo
"CD_VOLUME = 1" >> ${CD_DISC1}/cdrom.inf
973 @echo
"Building CDROM disc2 filesystem image"
974 @mkdir
-p
${CD_DISC2}
975 @echo
"CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
976 @echo
"CD_VOLUME = 2" >> ${CD_DISC2}/cdrom.inf
978 echo
"Building CDROM docs filesystem image"
980 @echo
"CD_VERSION = ${BUILDNAME}" > ${CD_DOCS}/cdrom.inf
981 @mkdir
-p
${CD_DOCS}/usr
/share
/doc
982 @for i in
`ls ${CD_LIVEFS}/usr/share/doc`; do \
983 if
[ -L
${CD_LIVEFS}/usr
/share
/doc
/$$i -o \
984 -d
/usr
/doc
/$$i ]; then \
985 mv
${CD_LIVEFS}/usr
/share
/doc
/$$i \
986 ${CD_DOCS}/usr
/share
/doc
; \
993 # --==## Setup a suitable cdrom-area ##==--
997 @echo
"Building bootonly CDROM filesystem image"
999 @cp
-Rp
${CD_LIVEFS}/boot
${CD_BOOT}
1000 @echo
"CD_VERSION = ${BUILDNAME}" > ${CD_BOOT}/cdrom.inf
1001 .if defined
(MINIROOT
)
1002 @echo
"Building bootonly UFS filesystem image"
1003 @mkdir
-p
${FD}/miniroot
1004 @sh
-e
${DOFS_SH} ${FD}/miniroot
/miniroot.ufs \
1005 ${RD} ${MNT} 0 ${CD_BOOT} 8192 auto
1006 @
${ZIPPER} -v
${FD}/miniroot
/miniroot.ufs
1012 .if defined
(CD_PACKAGE_TREE
)
1013 .if exists
(${CD_PACKAGE_TREE}/disc1
)
1014 CD_DISC1_PKGS
= ${CD_PACKAGE_TREE}/disc1
1016 .if exists
(${CD_PACKAGE_TREE}/disc2
)
1017 CD_DISC2_PKGS
= ${CD_PACKAGE_TREE}/disc2
1023 .if exists
(${.CURDIR
}/${TARGET_ARCH}/mkisoimages.sh
)
1024 @echo
"Creating ISO images..."
1025 .if defined
(CD_BOOT
)
1026 @sh
${.CURDIR
}/${TARGET_ARCH}/mkisoimages.sh
${BOOTABLE} \
1028 ${CD}/${BUILDNAME}-${TARGET}-bootonly.iso
${CD_BOOT}
1030 @sh
${.CURDIR
}/${TARGET_ARCH}/mkisoimages.sh
${BOOTABLE} \
1032 ${CD}/${BUILDNAME}-${TARGET}-disc1.iso
${CD_DISC1} \
1034 @sh
${.CURDIR
}/${TARGET_ARCH}/mkisoimages.sh \
1036 ${CD}/${BUILDNAME}-${TARGET}-disc2.iso
${CD_DISC2} \
1039 @sh
${.CURDIR
}/${TARGET_ARCH}/mkisoimages.sh \
1040 FreeBSD_Documentation \
1041 ${CD}/${BUILDNAME}-${TARGET}-docs.iso
${CD_DOCS}
1043 .if defined
(SEPARATE_LIVEFS
)
1044 @sh
${.CURDIR
}/${TARGET_ARCH}/mkisoimages.sh
${BOOTABLE} \
1046 ${CD}/${BUILDNAME}-${TARGET}-livefs.iso
${CD_LIVEFS}
1048 @echo
"Generating MD5 and SHA256 sums..."
1049 @
(cd
${CD} && md5
*.iso
> ${BUILDNAME}-${TARGET}-iso.CHECKSUM.MD5
)
1050 @
(cd
${CD} && sha256
*.iso
> ${BUILDNAME}-${TARGET}-iso.CHECKSUM.SHA256
)
1053 @echo
"Do not know how to create an ISO for ${TARGET_ARCH}."
1057 # --==## Documentation Project files such as the Handbook and FAQ ##==--
1060 @echo
"Making docs..."
1061 @for i in
${DOCPORTS}; do \
1062 cd
/usr
/ports
/$$i && \
1063 env
-i FTP_PASSIVE_MODE
=$${FTP_PASSIVE_MODE
:-no
} PATH
=$${PATH} \
1064 make
all install clean BATCH
=yes WITHOUT_X11
=yes JADETEX
=no \
1065 WITHOUT_PYTHON
=yes FORCE_PKG_REGISTER
=yes
; \
1067 @cd
/usr
/doc
&& make
all install 'FORMATS=html html-split txt' \
1068 INSTALL_COMPRESSED
='' DOCDIR
=${RD}/trees
/base
/usr
/share
/doc \
1073 # --==## RELNOTESng: Next-generation replacements for *.TXT files ##==--
1076 @echo
"Making release documentation..."
1077 @cd
${.CURDIR
}/doc
&& make
all install clean 'FORMATS=html txt' \
1078 INSTALL_COMPRESSED
='' URLS_ABSOLUTE
=YES DOCDIR
=${RND}
1081 # Various "subroutine" and other supporting targets.
1089 @echo
"SD undefined in doTARBALL" && exit
1
1092 @echo
"TD undefined in doTARBALL" && exit
1
1095 @echo
"ARG undefined in doTARBALL" && exit
1
1097 @
rm -rf
${RD}/dists
/${TD}/${TN}*
1098 @mkdir
-p
${RD}/dists
/${TD}
1100 tn
=`echo ${TN} | tr 'A-Z' 'a-z'` && \
1101 echo rolling
${TD}/$$tn tarball
&&\
1102 tar --exclude CVS
--exclude .svn
--exclude obj
--exclude BOOTMFS
-cf
- ${ARG} | \
1103 ${ZIPNSPLIT} ${RD}/dists
/${TD}/$$tn.
&& \
1104 sh
${.CURDIR
}/scripts
/info.sh
${RD}/dists
/${TD}/$$tn \
1105 > ${RD}/dists
/${TD}/$$tn.inf
&& \
1106 if
[ -f
${.CURDIR
}/scripts
/$${TD}-install.sh
]; then \
1107 cp
-p
${.CURDIR
}/scripts
/$${TD}-install.sh \
1108 ${RD}/dists
/${TD}/install.sh
&& \
1109 chmod
+x
${RD}/dists
/${TD}/install.sh
; \
1111 if
[ "${SD}" != "/usr/src" ]; then \
1112 mtree
-c
-i
-p
${SD}/${ARG} \
1113 -k gname
,md5digest
,mode
,nlink
,uname
,size
,link
,type \
1114 > ${RD}/dists
/${TD}/$$tn.mtree
; \
1118 ( cd
${RD}/dists
/${TD}; \
1119 rm -f CHECKSUM.MD5 CHECKSUM.SHA256
; \
1120 md5
* > .CHECKSUM.MD5
; \
1121 sha256
* > .CHECKSUM.SHA256
; \
1122 mv .CHECKSUM.MD5 CHECKSUM.MD5
; \
1123 mv .CHECKSUM.SHA256 CHECKSUM.SHA256
) \
1126 doRELEASE
: release
.1 release
.2 ${DOCREL} release
.3 release
.4 \
1127 release
.5 release
.6 release
.7 release
.8 ${EXTRAS}
1128 @echo
"Release done"
1131 @
rm -f release
.4 release
.8 floppies.
[123]
1132 @cd
${.CURDIR
} && ${MAKE} release
.4 release
.8 floppies
.1 floppies
.2 \
1134 @cd
${RD} && find floppies
-print | cpio
-dumpl
${FD}
1137 .if
!defined
(CRUNCH
)
1138 @echo
"CRUNCH undefined in installCRUNCH" && exit
1
1141 @echo
"DIR undefined in installCRUNCH" && exit
1
1144 @echo
"ZIP undefined in installCRUNCH" && exit
1
1147 ${ZIPPER} < ${RD}/crunch
/${CRUNCH} > ${DIR}/${CRUNCH}_crunch
; \
1149 ln
-f
${RD}/crunch
/${CRUNCH} ${DIR}/${CRUNCH}_crunch
; \
1151 @chmod
555 ${DIR}/${CRUNCH}_crunch
1152 @if
[ -f
${.CURDIR
}/${TARGET}/${CRUNCH}_crunch.conf
] ; then \
1153 for i in
`crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \
1154 ln
-f
${DIR}/${CRUNCH}_crunch
${DIR}/$$i ; \
1157 for i in
`crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
1158 ln
-f
${DIR}/${CRUNCH}_crunch
${DIR}/$$i ; \
1163 # --==## Build a floppy set for a splitfs file ##==--
1165 # FLOPPYBASE - basename of floppy image files
1166 # FLOPPYDESC - description of floppy set
1167 # SPLITFILE - filename of the file to split
1168 # FDSIZE - if specified and "small", small floppy is created
1170 .if make
(makeFloppySet
)
1171 SPLITDIR
= ${RD}/floppyset
/${FLOPPYBASE}
1172 .if defined
(FDSIZE
) && ${FDSIZE} == "SMALL"
1173 FLPSPLITSIZE
= ${SMALLFLOPPYSPLITSIZE}
1174 FLPSIZE
= ${SMALLFLOPPYSIZE}
1175 FLPLABEL
= ${SMALLFLOPPYLABEL}
1177 FLPSPLITSIZE
= ${FLOPPYSPLITSIZE}
1178 FLPSIZE
= ${FLOPPYSIZE}
1179 FLPLABEL
= ${FLOPPYLABEL}
1184 .if
!defined
(FLOPPYBASE
)
1185 @echo
"FLOPPYBASE undefined in ${.TARGET}" && exit
1
1187 .if
!defined
(FLOPPYDESC
)
1188 @echo
"FLOPPYDESC undefined in ${.TARGET}" && exit
1
1190 .if
!defined
(SPLITFILE
)
1191 @echo
"SPLITFILE undefined in ${.TARGET}" && exit
1
1193 sh
${.CURDIR
}/scripts
/split-file.sh
${SPLITFILE} \
1194 ${RD}/floppyset
/${FLOPPYBASE} ${FLPSPLITSIZE} "${FLOPPYDESC}"
1195 ( splitfile
=${SPLITDIR}/`basename ${SPLITFILE}`.split
; \
1196 lines
=`cat $${splitfile} | wc -l`; \
1197 lines
=$$(($$lines - 1)) ; \
1198 for line in
`jot $$lines`; do \
1199 file
=`head -n $$(($${line} + 1)) $${splitfile} | tail -1 | cut -f 1 -d ' '` ; \
1200 sh
-e
${DOFS_SH} ${RD}/floppies
/${FLOPPYBASE}$${line}.flp \
1201 ${RD} ${MNT} ${FLPSIZE} ${SPLITDIR}/$${file} \
1202 ${BOOTINODE} ${FLPLABEL}; \
1206 # --==## Build a boot floppy ##==--
1208 # FSIMAGE - base floppy image name
1209 # FDSIZE - if specified and "small", small floppy is created
1210 # KERNFILE - path to kernel split file
1211 # MFSROOTFILE - path to mfsroot split file
1213 .if make
(buildBootFloppy
)
1214 IMAGEDIR
= ${RD}/image.
${FSIMAGE}
1215 BOOTDIR
= ${RD}/trees
/base
/boot
1216 HINTSFILE
= ${BOOTDIR}/device.hints
1217 ACPI_KO
= ${RD}/kernels
/GENERIC
/acpi.ko
1218 IMAGEFILE
= ${RD}/floppies
/${FSIMAGE}.flp
1219 .if defined
(FDSIZE
) && ${FDSIZE} == "SMALL"
1220 FLPSIZE
= ${SMALLFLOPPYSIZE}
1221 FLPLABEL
= ${SMALLFLOPPYLABEL}
1223 FLPSIZE
= ${FLOPPYSIZE}
1224 FLPLABEL
= ${FLOPPYLABEL}
1229 .if
!defined
(FSIMAGE
)
1230 @echo
"FSIMAGE undefined in ${.TARGET}" && exit
1
1232 .if
!defined
(KERNFILE
)
1233 @echo
"KERNFILE undefined in ${.TARGET}" && exit
1
1235 .if
!defined
(MFSROOTFILE
)
1236 @echo
"MFSROOTFILE undefined in ${.TARGET}" && exit
1
1238 @echo
"Running ${.TARGET} for ${FSIMAGE}"
1241 @echo
"Setting up /boot directory for ${FSIMAGE} floppy"
1242 @mkdir
-p
${IMAGEDIR}/boot
1243 .if
${TARGET} == "i386"
1244 @
${WMAKEENV} kgzip
-v
-l
${RD}/trees
/base
/usr
/lib
/kgzldr.o
-o \
1245 ${IMAGEDIR}/boot
/loader
${BOOTDIR}/loader
1247 @cp
${BOOTDIR}/loader
${IMAGEDIR}/boot
1249 @cp
-Rp
${BOOTDIR}/*.4th
${BOOTDIR}/defaults
${BOOTDIR}/loader.help \
1250 ${BOOTDIR}/loader.rc
${IMAGEDIR}/boot
1251 .if exists
(${HINTSFILE})
1252 @cp
${HINTSFILE} ${IMAGEDIR}/boot
/device.hints
1253 @
${ZIPPER} ${IMAGEDIR}/boot
/device.hints
1255 @
${ZIPPER} ${IMAGEDIR}/boot
/*.4th
${IMAGEDIR}/boot
/loader.help \
1256 ${IMAGEDIR}/boot
/defaults
/loader.conf
1257 @echo
'bootfile="/kernel"' > ${IMAGEDIR}/boot
/loader.conf
1258 .if exists
(${ACPI_KO})
1259 @
${ZIPPER} -c
${ACPI_KO} > ${IMAGEDIR}/acpi.ko.gz
1260 @echo
'acpi_load="YES"' >> ${IMAGEDIR}/boot
/loader.conf
1261 @echo
'acpi_name="/acpi.ko"' >> ${IMAGEDIR}/boot
/loader.conf
1262 @echo
'acpi_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot
/loader.conf
1264 @echo
'mfsroot_load="YES"' >> ${IMAGEDIR}/boot
/loader.conf
1265 @echo
'mfsroot_type="mfs_root"' >> ${IMAGEDIR}/boot
/loader.conf
1266 @echo
'mfsroot_name="/mfsroot"' >> ${IMAGEDIR}/boot
/loader.conf
1267 .if
!exists
(${ACPI_KO})
1268 @echo
'mfsroot_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot
/loader.conf
1270 .if defined
(SPLIT_MFSROOT
)
1271 @echo
'mfsroot_after="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot
/loader.conf
1273 .if
${TARGET_ARCH} == "i386" ||
${TARGET_ARCH} == "amd64"
1274 .if
${AUTO_KEYBOARD_DETECT}
1275 @echo
"-P" >> ${IMAGEDIR}/boot.config
1279 @cp
${KERNFILE} ${MFSROOTFILE} ${IMAGEDIR}
1280 sh
-e
${DOFS_SH} ${IMAGEFILE} ${RD} ${MNT} ${FLPSIZE} ${IMAGEDIR} \
1281 ${BOOTINODE} ${FLPLABEL}
1282 @echo
"Created ${RD}/floppies/${FSIMAGE}.flp"
1284 .if make
(package-split
)
1285 # Targets related to making a package split
1287 # PKG_COPY instructs the script to copy the actual package files rather than
1289 # PKG_TREE is the path to the package tree to be split
1290 # PKG_DEST is the path to the destination tree to create the split in
1291 # PKG_VERBOSE asks for verbose output of the layout process
1292 # PKG_INDEX is the path to the INDEX file. By default ${PKG_TREE}/INDEX.
1294 .if defined
(PKG_COPY
)
1299 PKG_WRKIDX
= ${PKG_DEST}/INDEX.master
1301 .if defined
(TARGET_ARCH
)
1302 PKG_ENV
+= PKG_ARCH
=${TARGET_ARCH}
1304 .if defined
(PKG_VERBOSE
)
1305 PKG_ENV
+= PKG_VERBOSE
=1
1307 PKG_INDEX?
= ${PKG_TREE}/INDEX
1310 .if
!defined
(PKG_TREE
)
1311 @echo
"PKG_TREE must be defined" && exit
1
1313 .if
!defined
(PKG_DEST
)
1314 @echo
"PKG_DEST must be defined" && exit
1
1316 @env
${PKG_ENV} python
${.CURDIR
}/scripts
/package-split.py \
1317 ${PKG_INDEX} ${PKG_WRKIDX}
1318 @env
${PKG_ENV} sh
${.CURDIR
}/scripts
/package-trees.sh
${PKG_DO_COPY} \
1319 ${PKG_WRKIDX} ${PKG_TREE} ${PKG_DEST}
1322 .
include <bsd.obj.mk
>