1# $FreeBSD$ 2# 3# make release [BUILDNAME=somename] CHROOTDIR=/some/dir CVSROOT=/cvs/dir \ 4# [RELEASETAG=tag] 5# 6# Where "/some/dir" is the pathname of a directory on a some filesystem with 7# at least 1000MB of free space, "somename" is what you want the release to 8# call itself, "/cvs/dir" is where our source repo resides and, optionally, 9# which CVS "tag" name should be used when checking out the sources to build 10# the release (default is HEAD). 11# 12# Please note: the md(4) driver must be present in the kernel 13# (either by being compiled in or available as a kld(4) module), 14# otherwise the target 'release.9' 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=5.1-RELEASE 22# 23# Automatic SNAP versioning: 24DATE != date +%Y%m%d 25BASE = 5.1 26BUILDNAME?=${BASE}-${DATE}-SNAP 27# 28#CHROOTDIR=/junk/release 29# If this is a -stable snapshot, then set 30#RELEASETAG=RELENG_4 31# 32# To add other options to the CVS subcommands (co,up), set 33#CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'" 34# 35# To add other options to the CVS command, set 36#CVSARGS="-lfq" 37# 38# To prefix the cvs command 39#CVSPREFIX="/usr/bin/time" 40# 41# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we 42# are building an official release. Otherwise, we are building for 43# a branch. 44.if defined(RELEASETAG) 45ISRELEASE!= expr "${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true 46.if ${ISRELEASE} != 0 47# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees. 48AUXRELEASETAG!= echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//' 49DOCRELEASETAG?= ${AUXRELEASETAG} 50PORTSRELEASETAG?= ${AUXRELEASETAG} 51.endif 52.endif 53 54# If you want to pass flags to the world build such as -j X, use 55# WORLD_FLAGS. Similarly, you can specify make flags for kernel 56# builds via KERNEL_FLAGS. 57# Similarly, you can specify make flags for make readmes via PORTREADMES_FLAGS. 58#WORLD_FLAGS=-j4 59#KERNEL_FLAGS=-j4 60#PORTREADMES_FLAGS=-j4 61 62TARGET_ARCH?= ${MACHINE_ARCH} 63.if ${TARGET_ARCH} == ${MACHINE_ARCH} 64TARGET?= ${MACHINE} 65.else 66TARGET?= ${TARGET_ARCH} 67.endif 68CROSSENV= TARGET_ARCH=${TARGET_ARCH} TARGET=${TARGET} 69CROSSMAKE= ${MAKE} ${CROSSENV} 70NATIVEMAKE= ${MAKE} TARGET_ARCH=${MACHINE_ARCH} TARGET=${MACHINE} 71 72# If you are using a local CVS repository with components stored in 73# non-standard modules, override these on the make commandline or 74# in the environment. 75RELEASESRCMODULE?= src 76RELEASEDOCMODULE?= doc 77RELEASEPORTSMODULE?= ports 78 79# Uncomment this to disable the doc.1 target. Docs normally require 80# the ports tree, so NOPORTS can be set together with NODOC in order 81# to have neither ports or docs. If only NOPORTS is set to YES, but 82# docs are still desired, the DOMINIMALDOCPORTS logic below will only 83# install the ports that are minimally required for the docs. This is 84# intended as a compromise, less disk space is required than for using 85# the entire ports collection (and much less time due to the huge number 86# of directories it would create), but still quite a bit as well as some 87# CPU cycles (some of the programs are C++, and things like ghostscript 88# belong to the required ports nevertheless). 89# 90# Setting this also disables building of release note documentation 91# (RELNOTESng). 92#NODOC= YES 93#NOPORTS= YES 94 95# Modify this definition if you want the release notes 96# and other release documentation in a language other than English. 97RELNOTES_LANG?= en_US.ISO8859-1 98 99# As an alternative to installing the entire ports collection (which 100# can take a huge amount of time, in particular on slower disks), 101# setting ${MINIMALDOCPORTS} allows to install and build just those 102# ports that are really required for getting the docs up & running. 103.if defined(NOPORTS) && !defined(NODOC) 104DOMINIMALDOCPORTS= YES 105.include "Makefile.inc.docports" 106RELEASEPORTSMODULE= ${MINIMALDOCPORTS} 107.endif 108 109# Helper variable 110.if defined(NOPORTS) 111.if !defined(DOMINIMALDOCPORTS) || ${DOMINIMALDOCPORTS} != "YES" 112NOPORTSATALL= YES 113.endif 114.endif 115 116# By default, documentation (Handbook, FAQ, etc.) is built for all 117# the languages. To speed up building, set the DOC_LANG to just 118# the languages you need. (The language for the release notes is 119# controlled by the RELNOTES_LANG variable above.) 120#DOC_LANG= en_US.ISO8859-1 121DOCPORTS= textproc/docproj 122# Set this to wherever the distfiles required by release procedures. 123.if defined(DOCDISTFILES) 124# Respect DOCDISTFILES which is used before. 125RELEASEDISTFILES?= ${DOCDISTFILES} 126.else 127RELEASEDISTFILES?= ${.CURDIR}/../../ports/distfiles 128.endif 129# Set this to 1 if you want -P to be used for automatic keyboard detection 130# on the boot floppy. WARNING: Breaks on some Athlon (K7) motherboards. 131AUTO_KEYBOARD_DETECT?= 0 132 133.if !defined(NODOC) 134DIST_DOCS_ARCH_INDEP= readme errata early-adopter 135DIST_DOCS_ARCH_DEP= installation relnotes hardware 136.endif 137 138# Things which without too much trouble can be considered variables 139# BASE_DISTS are special in that they get full /etc installation sets. 140# 141.if ${TARGET_ARCH} == "i386" 142COMPAT_DISTS?= compat1x compat20 compat21 compat22 compat3x compat4x 143.elif ${TARGET_ARCH} != "ia64" 144COMPAT_DISTS?= compat4x 145.endif 146OTHER_DISTS?= catpages manpages games proflibs dict info doc 147CRYPTO_DISTS?= crypto 148BASE_DISTS?= base 149DISTRIBUTIONS?= ${BASE_DISTS} ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} 150 151# mountpoint for filesystems. 152MNT= /mnt 153 154# Various floppy image parameters. 155# 156 157.if ${TARGET_ARCH} == "i386" 158.if ${TARGET} == "pc98" 159SMALLBOOTSIZE= 1200 160BOOTSIZE= 1440 161SMALLFIXITSIZE= 1200 162FIXITSIZE= 1440 163MFSSIZE= 4320 164BOOTINODE= 80000 165FIXITINODE= 40000 166MFSINODE= 8000 167SMALLBOOTLABEL= fd1200 168BOOTLABEL= fd1440 169SMALLFIXITLABEL= fd1200 170FIXITLABEL= fd1440 171MFSLABEL= minimum3 172.else 173DRIVERSIZE= 1440 174BOOTSIZE= 1440 175FIXITSIZE= 1440 176MFSSIZE= 4320 177BIGBOOTSIZE= 2880 178DRIVERINODE= 40000 179BOOTINODE= 80000 180FIXITINODE= 40000 181MFSINODE= 8000 182DRIVERLABEL= fd1440 183BOOTLABEL= fd1440 184FIXITLABEL= fd1440 185MFSLABEL= minimum3 186BIGBOOTLABEL= minimum2 187.endif 188.elif ${TARGET_ARCH} == "alpha" 189DRIVERSIZE= 1440 190BOOTSIZE= 1440 191FIXITSIZE= 2880 192MFSSIZE= 4320 193BIGBOOTSIZE= 2880 194DRIVERINODE= 40000 195BOOTINODE= 80000 196FIXITINODE= 40000 197MFSINODE= 8000 198DRIVERLABEL= fd1440 199BOOTLABEL= fd1440 200FIXITLABEL= minimum2 201MFSLABEL= auto 202BIGBOOTLABEL= minimum2 203.elif ${TARGET_ARCH} == "sparc64" 204DISKLABEL= sunlabel 205BIGBOOTSIZE= 4096 206MFSSIZE= 4096 207BOOTINODE= 8192 208MFSINODE= 8192 209BIGBOOTLABEL= auto 210MFSLABEL= auto 211.elif ${TARGET_ARCH} == "ia64" 212BIGBOOTLABEL= efi 213BIGBOOTSIZE= 5154 214BOOTINODE= 15872 215MFSINODE= 8192 216MFSLABEL= auto 217MFSSIZE= 8192 218.elif ${TARGET_ARCH} == "amd64" 219BIGBOOTSIZE= 4096 220MFSSIZE= 4096 221BOOTINODE= 8192 222MFSINODE= 8192 223BIGBOOTLABEL= auto 224MFSLABEL= auto 225.endif 226 227.if exists(/sbin/bsdlabel) 228DISKLABEL?= bsdlabel 229.else 230DISKLABEL?= disklabel 231.endif 232 233ZIPNSPLIT= gzip --no-name -9 -c | split -b 1423k - 234 235# Things that need to be compiled without crypto support in releases 236.if !defined(FIXCRYPTO) 237FIXCRYPTO!= cd ${.CURDIR}/../kerberos5; ${MAKE} -V KPROGS 238FIXCRYPTO+= bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/tcpdump/tcpdump \ 239 lib/libfetch usr.bin/fetch 240.if !defined(NO_SENDMAIL) 241FIXCRYPTO+= usr.sbin/sendmail 242.endif 243.endif 244 245 246# Things which may get you into trouble if you change them 247MTREEFILES= ${.CURDIR}/../etc/mtree 248_R?= /R 249RD= ${_R}/stage 250RND= ${RD}/release.doc 251FD= ${_R}/ftp 252CD= ${_R}/cdrom 253CD_DISC1= ${CD}/disc1 254CD_DISC2= ${CD}/disc2 255 256# Where the bootstrap ports (see DOCPORTS) get installed. 257LOCALDIR= /usr/local/bin 258 259.if exists(${.CURDIR}/${TARGET_ARCH}/doFS.sh) 260DOFS_SH= ${.CURDIR}/${TARGET_ARCH}/doFS.sh 261.elif ${TARGET} != ${MACHINE} 262DOFS_SH= ${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ${TARGET} 263.else 264DOFS_SH= ${.CURDIR}/scripts/doFS.sh ${DISKLABEL} "" 265.endif 266 267.if ${TARGET_ARCH} == "sparc64" 268CRUNCH_TARGETS= boot 269FIXIT_TARGET= 270.elif ${TARGET_ARCH} == "ia64" 271CRUNCH_TARGETS= boot 272FIXIT_TARGET= 273.elif ${TARGET} == "pc98" 274CRUNCH_TARGETS= boot fixit fixit-small 275.elif ${TARGET_ARCH} == "amd64" 276CRUNCH_TARGETS= boot 277FIXIT_TARGET= 278.endif 279 280CRUNCH_TARGETS?=boot fixit 281 282.if !defined(FIXIT_TARGET) 283FIXIT_TARGET= release.10 284.endif 285 286EXTRAS= ftp.1 287.if !defined(NOCDROM) 288EXTRAS+= cdrom.1 289.if defined(MAKE_ISOS) 290EXTRAS+= iso.1 291.endif 292.if ${TARGET} != "pc98" 293BOOTABLE="-b" 294.endif 295.endif 296 297.if !defined(NODOC) 298DOCREL= doc.1 doc.2 299.endif 300 301BINMAKE!= cd ${.CURDIR}/..; ${MAKE} -V BINMAKE 302WMAKEENV!= cd ${.CURDIR}/..; \ 303 ${BINMAKE} ${CROSSENV} -f Makefile.inc1 -V WMAKEENV 304WMAKE= ${WMAKEENV} ${BINMAKE} 305 306CVS_SRCARGS= -P 307.if defined(RELEASETAG) 308CVS_SRCARGS+= -r ${RELEASETAG} 309.endif 310 311CVS_DOCARGS= -P 312.if defined(DOCRELEASETAG) 313CVS_DOCARGS+= -r ${DOCRELEASETAG} 314.endif 315 316CVS_PORTSARGS= -P 317.if defined(PORTSRELEASETAG) 318CVS_PORTSARGS+= -r ${PORTSRELEASETAG} 319.endif 320 321release rerelease: 322.if !defined(CHROOTDIR) || !defined(BUILDNAME) || !defined(CVSROOT) 323 @echo "To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false 324.endif 325.if defined(NOPORTSATALL) && !defined(NODOC) 326 @echo "Ports are required for building the docs. Either set NODOC or" 327 @echo "unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!" 328 @exit 1 329.endif 330.if make(release) 331.if exists(${CHROOTDIR}) 332# The first command will fail on a handful of files that have their schg 333# flags set. But it greatly speeds up the next two commands. 334 # NB: clear any vestigal devfs mount, just in case 335 -umount ${CHROOTDIR}/dev > /dev/null 2>&1 336 -rm -rf ${CHROOTDIR} 2>/dev/null 337 -chflags -R noschg ${CHROOTDIR}/. 338 -rm -rf ${CHROOTDIR} 339.endif 340 mkdir -p ${CHROOTDIR} 341 @echo ">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`" 342 cd ${.CURDIR}/.. && ${NATIVEMAKE} -DNOGAMES -DNOHTML -DNOINFO -DNOMAN \ 343 -DNOPROFILE installworld DESTDIR=${CHROOTDIR} 344 cd ${.CURDIR}/../etc && ${NATIVEMAKE} distribution DESTDIR=${CHROOTDIR} 345 if [ -f /etc/resolv.conf ]; then \ 346 cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \ 347 fi 348.if defined(EXTLOCALDIR) 349 rm -rf ${CHROOTDIR}/usr/local 350 cd ${CHROOTDIR}/usr && cp -R -H ${EXTLOCALDIR} local 351.endif 352 rm -rf ${CHROOTDIR}/usr/src 353.if defined(EXTSRCDIR) 354 cd ${CHROOTDIR}/usr && \ 355 cp -R -H ${EXTSRCDIR} src 356.else 357 cd ${CHROOTDIR}/usr && \ 358 ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} co ${CVSCMDARGS} ${CVS_SRCARGS} ${RELEASESRCMODULE} 359.endif 360.if defined(LOCAL_PATCHES) && exists(${LOCAL_PATCHES}) 361 cd ${CHROOTDIR}/usr/src && patch ${PATCH_FLAGS} < ${LOCAL_PATCHES} 362.endif 363.if defined(LOCAL_SCRIPT) && exists(${LOCAL_SCRIPT}) 364 cd ${CHROOTDIR} && env CHROOTDIR=${CHROOTDIR} BUILDNAME=${BUILDNAME} RELEASETAG=${RELEASETAG} ${LOCAL_SCRIPT} 365.endif 366 rm -rf ${CHROOTDIR}/usr/ports 367.if !defined(NOPORTSATALL) 368 cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} co ${CVSCMDARGS} ${CVS_PORTSARGS} ${RELEASEPORTSMODULE} 369.endif 370.if !defined(NODOC) 371 rm -rf ${CHROOTDIR}/usr/doc 372.if defined(EXTDOCDIR) 373 cd ${CHROOTDIR}/usr && cp -R -H ${EXTDOCDIR} doc 374.else 375 cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} co ${CVSCMDARGS} ${CVS_DOCARGS} ${RELEASEDOCMODULE} 376.endif 377 if [ -d ${RELEASEDISTFILES}/ ]; then \ 378 cp -rp ${RELEASEDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \ 379 else \ 380 mkdir -p ${CHROOTDIR}/usr/ports/distfiles; \ 381 fi 382.if !defined(NO_PREFETCHDISTFILES) 383 @cd ${.CURDIR} && ${MAKE} fetch-distfiles 384.endif 385.endif 386.endif 387.if make(rerelease) 388.if !defined(RELEASENOUPDATE) 389.if !defined(RELEASETAG) 390 cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q update ${CVSCMDARGS} -P -d -A 391.else 392 cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q update ${CVSCMDARGS} -P -d -r ${RELEASETAG} 393.endif 394 rm -f ${CHROOTDIR}/tmp/.world_done 395.if !defined(NOPORTS) 396 cd ${CHROOTDIR}/usr/ports && ${CVSPREFIX} cvs -R ${CVSARGS} -q update ${CVSCMDARGS} -P -d 397.endif 398.if defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES" 399 for i in ${MINIMALDOCPORTS}; do \ 400 ( cd ${CHROOTDIR}/usr/$$i && ${CVSPREFIX} cvs -R ${CVSARGS} -q update ${CVSCMDARGS} -P -d ) ; \ 401 done 402.endif 403.if !defined(NODOC) 404 cd ${CHROOTDIR}/usr/doc && ${CVSPREFIX} cvs -R ${CVSARGS} -q update ${CVSCMDARGS} -P -d 405.endif 406.endif 407.endif 408 # Add version information to those things that need it. 409 if [ ! -f ${CHROOTDIR}/tmp/.world_done ]; then \ 410 cd ${CHROOTDIR}/usr/src/sys/conf && \ 411 mv newvers.sh foo && \ 412 sed "s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo > newvers.sh && \ 413 rm foo; \ 414 fi 415 -test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release 416 echo "#!/bin/sh" > ${CHROOTDIR}/mk 417 echo "set -ex" >> ${CHROOTDIR}/mk 418 echo "trap 'umount /dev || true' 0" >> ${CHROOTDIR}/mk 419 echo "_RELTARGET=\$${1:-doRELEASE}" >> ${CHROOTDIR}/mk 420.for var in \ 421 AUTO_KEYBOARD_DETECT \ 422 BOOT_CONFIG \ 423 BUILDNAME \ 424 CD_EXTRA_BITS \ 425 DISTRIBUTIONS \ 426 DOC_LANG \ 427 DOMINIMALDOCPORTS \ 428 EXTRA_SRC \ 429 FIXCRYPTO \ 430 FTP_PASSIVE_MODE \ 431 FTP_PROXY \ 432 HTTP_PROXY \ 433 KERNELS \ 434 KERNEL_FLAGS \ 435 MAKE_ISOS \ 436 NOCDROM \ 437 NODOC \ 438 NOPORTS \ 439 NOSHARED \ 440 NOSRC \ 441 NO_CPU_CFLAGS \ 442 NO_CPU_COPTFLAGS \ 443 NO_FLOPPIES \ 444 NO_SENDMAIL \ 445 RELEASETAG \ 446 RELNOTES_LANG \ 447 TARGET \ 448 TARGET_ARCH \ 449 WORLD_FLAGS 450.if defined(${var}) 451 echo "export ${var}=\"${${var}}\"" >> ${CHROOTDIR}/mk 452.endif 453.endfor 454 # Don't remove this, or the build will fall over! 455 echo "export RELEASEDIR=${_R}" >> ${CHROOTDIR}/mk 456 echo "export PATH=/bin:/usr/bin:/sbin:/usr/sbin:${LOCALDIR}" >> ${CHROOTDIR}/mk 457 echo "export MANBUILDCAT=YES" >> ${CHROOTDIR}/mk 458 # NB: these may fail if the host is running w/o devfs 459 echo "umount /dev >/dev/null 2>&1 || true" >> ${CHROOTDIR}/mk 460 echo "mount -t devfs devfs /dev >/dev/null 2>&1 || true" \ 461 >> ${CHROOTDIR}/mk 462 echo "if [ ! -f /tmp/.world_done ]; then" >> ${CHROOTDIR}/mk 463 echo " cd /usr/src" >> ${CHROOTDIR}/mk 464 echo " ${CROSSMAKE} ${WORLD_FLAGS} -DNOCLEAN buildworld && \\" >> ${CHROOTDIR}/mk 465 echo " touch /tmp/.world_done" >> ${CHROOTDIR}/mk 466 echo "fi" >> ${CHROOTDIR}/mk 467 echo "if [ ! -f /tmp/.skip_ports ]; then" >> ${CHROOTDIR}/mk 468 echo " echo \">>> make readmes started on \`LC_ALL=C TZ=GMT date\`\"" >> ${CHROOTDIR}/mk 469 echo " cd /usr/ports" >> ${CHROOTDIR}/mk 470 echo " make ${PORTREADMES_FLAGS} readmes" >> ${CHROOTDIR}/mk 471 echo " touch /tmp/.skip_ports" >> ${CHROOTDIR}/mk 472 echo " echo \">>> make readmes finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${CHROOTDIR}/mk 473 echo "fi" >> ${CHROOTDIR}/mk 474 echo "cd /usr/src/release" >> ${CHROOTDIR}/mk 475 echo "make obj" >> ${CHROOTDIR}/mk 476 echo "make \$${_RELTARGET}" >> ${CHROOTDIR}/mk 477 echo "echo \">>> make ${.TARGET} for ${TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${CHROOTDIR}/mk 478 chmod 755 ${CHROOTDIR}/mk 479.if defined(NOPORTS) || defined(NOPORTREADMES) 480 touch ${CHROOTDIR}/tmp/.skip_ports 481.endif 482 # Ensure md.ko is loaded if md(4) is not statically compiled into the kernel 483 -mdconfig 2>/dev/null 484 env -i /usr/sbin/chroot ${CHROOTDIR} /mk 485 486clean: 487 rm -rf ${CRUNCH_TARGETS:S/$/_crunch/} release.[0-9] ${FIXIT_TARGET} \ 488 ${EXTRAS} 489 490fetch-distfiles: 491 @for i in ${DOCPORTS}; do \ 492 cd ${CHROOTDIR}/usr/ports/$$i && \ 493 make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \ 494 WITHOUT_X11=yes JADETEX=no WITHOUT_PYTHON=yes \ 495 checksum-recursive ; \ 496 done 497 498# Clean out ${_R} and make the directory structure. 499release.1: 500 mkdir -p ${_R} 501 -rm -rf ${_R}/* 2> /dev/null 502 -chflags -R noschg ${_R}/. 503 rm -rf ${_R}/* 504 mkdir ${RD} 505 mkdir ${RD}/floppies 506 mkdir ${RD}/trees 507 mkdir ${RD}/kernels 508 for i in ${DISTRIBUTIONS} ; do \ 509 mkdir ${RD}/trees/$$i && \ 510 mtree -deU -f ${MTREEFILES}/BSD.root.dist \ 511 -p ${RD}/trees/$$i > /dev/null && \ 512 mtree -deU -f ${MTREEFILES}/BSD.usr.dist \ 513 -p ${RD}/trees/$$i/usr > /dev/null && \ 514 mtree -deU -f ${MTREEFILES}/BSD.include.dist \ 515 -p ${RD}/trees/$$i/usr/include > /dev/null && \ 516 mtree -deU -f ${MTREEFILES}/BSD.var.dist \ 517 -p ${RD}/trees/$$i/var > /dev/null ; \ 518 done 519 touch release.1 520 521# Install the system into the various distributions. 522release.2: 523 cd ${.CURDIR}/../etc && make distrib-dirs DESTDIR=${RD}/trees/base 524 cd ${.CURDIR}/.. && ${CROSSMAKE} distributeworld DISTDIR=${RD}/trees 525 touch release.2 526 527# Build and install crypto distributions. 528release.3: 529 # Handle some grief caused by the munition braindeadness. 530 cd ${.CURDIR}/..; \ 531 ${CROSSMAKE} ${WORLD_FLAGS} -DNO_MAKEDB_RUN -DNOCRYPT \ 532 SUBDIR_OVERRIDE="${FIXCRYPTO}" \ 533 buildworld distributeworld DISTDIR=${RD}/trees 534 -chflags -R noschg ${RD}/trees 535 touch release.3 536 537# Make and install the generic kernel(s). 538release.4: 539.for kernel in ${KERNELS} 540 cd ${.CURDIR}/..; \ 541 ${CROSSMAKE} ${KERNEL_FLAGS} -DNO_MODULES \ 542 KERNCONF=${kernel} INSTKERNNAME=${kernel} kernel \ 543 DESTDIR=${RD}/trees/base 544.endfor 545 # Install a standard boot kernel+modules. 546 cd ${.CURDIR}/..; \ 547 ${CROSSMAKE} ${KERNEL_FLAGS} \ 548 kernel \ 549 DESTDIR=${RD}/trees/base; \ 550 cd ${.CURDIR}/..; \ 551 ${CROSSMAKE} ${KERNEL_FLAGS} -DNO_MODULES \ 552 reinstallkernel -DINSTALL_DEBUG \ 553 DESTDIR=${RD}/trees/base 554 touch release.4 555 556# Make and install the three crunched binaries which live on the floppies. 557# You are not supposed to like this :-) 558release.5: 559 rm -rf ${RD}/crunch 560 mkdir -p ${RD}/crunch 561.for j in ${CRUNCH_TARGETS} 562 rm -rf ${j}_crunch 563 mkdir ${j}_crunch 564.if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf) 565 cd ${j}_crunch; ${WMAKEENV} crunchgen -o ${.CURDIR}/${TARGET}/${j}_crunch.conf 566.else 567 cd ${j}_crunch; ${WMAKEENV} crunchgen -o ${.CURDIR}/${j}_crunch.conf 568.endif 569 cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean 570 cd ${.CURDIR}/..; ${BINMAKE} -f Makefile.inc1 _build-tools 571 cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk \ 572 CFLAGS="-Os -pipe" -DNO_CPU_CFLAGS all 573 ${WMAKEENV} strip -R .comment ${j}_crunch/${j}_crunch 574 mv ${j}_crunch/${j}_crunch ${RD}/crunch/${j} 575.endfor 576 touch release.5 577 578# 579# --==## Fix up the distributions. ##==-- 580# 581release.6: 582 # Create any "synthetic dists" now. 583 @for i in ${DISTRIBUTIONS}; do \ 584 if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \ 585 echo -n "Running $$i dist creation script... "; \ 586 env RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \ 587 echo "Done."; \ 588 fi \ 589 done \ 590 591 # Remove all the directories we don't need. 592 -cd ${RD}/trees && \ 593 find ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} -depth -type d -print | xargs rmdir 594 touch release.6 595 596# 597# --==## Package up the tarballs from assembled trees ##==-- 598# 599release.7: 600 rm -rf ${RD}/dists 601 mkdir -p ${RD}/dists 602 @for i in ${DISTRIBUTIONS} ; \ 603 do \ 604 if [ -d ${RD}/trees/$${i} ] ; then \ 605 cd ${.CURDIR} && $(MAKE) doTARBALL \ 606 SD=${RD}/trees/$${i} \ 607 TN=$$i TD=$$i ARG="." && \ 608 echo "$${i} distribution is finished."; \ 609 fi ; \ 610 done 611 touch release.7 612 613 614# 615# --==## Make source dists ##==-- 616# 617release.8: 618.if !defined(NOSRC) 619 @cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \ 620 TD=src TN=sbase ARG="[A-Z]*" 621 @for i in `cd /usr/src && echo [a-z]*` ; do \ 622 if [ -d /usr/src/$$i ] ; then \ 623 cd ${.CURDIR} && $(MAKE) doTARBALL \ 624 TN=`echo s$$i | tr -d '.' | \ 625 sed -e 's/usr/u/' \ 626 -e 's/kerberos5/krb5/'` \ 627 SD=/usr/src TD=src ARG="$$i" ; \ 628 fi ; \ 629 done 630.if defined(EXTRA_SRC) 631 @set ${EXTRA_SRC} && \ 632 while [ $$# -ge 2 ] ; do \ 633 if [ -d /usr/src/$$1 ] ; then \ 634 cd ${.CURDIR} && $(MAKE) doTARBALL \ 635 SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \ 636 fi && shift && shift ; \ 637 done 638.endif 639 if [ -d ${RD}/dists/crypto ] ; then ( cd ${RD}/dists/src && \ 640 if [ -f ssecure.aa ] ; then mv ssecure.* ../crypto ; fi && \ 641 if [ -f scrypto.aa ] ; then mv scrypto.* ../crypto ; fi && \ 642 if [ -f skrb5.aa ] ; then mv skrb5.* ../crypto ; fi ; \ 643 cd ${RD}/dists/crypto; rm -f CHECKSUM.MD5; \ 644 md5 * > CHECKSUM.MD5 ) ; fi 645 (cd ${RD}/dists/src; rm -f CHECKSUM.MD5; md5 * > CHECKSUM.MD5) 646 @echo "src distribution is finished." 647.endif 648 touch release.8 649 650# Complete the bootfd 651# 652# Now, just to get this picture down once and for all: 653# 654# +------------------------------------------------------------------------+ 655# |boot.flp | 656# +-----+-----+------------------------------------------------------------+ 657# |boot1|boot2|floppy filesystem "bootfd" | 658# +-----+-----+-+----------------------+---------------------------------+-+ 659# |kernel.gz |mfsroot.gz | 660# +----------------------+---------------------------------+ 661# 662 663release.9: 664.if ${TARGET_ARCH} != "ia64" || ${TARGET_ARCH} == ${MACHINE_ARCH} 665 cp ${RD}/trees/base/etc/disktab /etc 666 rm -rf ${RD}/mfsfd 667 mkdir ${RD}/mfsfd 668 cd ${RD}/mfsfd && \ 669 mkdir -p etc/defaults dev mnt stand/etc/defaults stand/help 670 @cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \ 671 DIR=${RD}/mfsfd/stand ZIP=false 672 ( cd ${RD}/mfsfd && \ 673 for dir in bin sbin ; do \ 674 ln -sf /stand $$dir; \ 675 done ) 676 cp ${RD}/trees/base/sbin/dhclient-script ${RD}/mfsfd/stand 677.if ${TARGET} == "pc98" 678 cp ${.CURDIR}/../etc/defaults/pccard.conf ${RD}/mfsfd/etc/defaults/pccard.conf 679.endif 680 cp ${.CURDIR}/../etc/usbd.conf ${RD}/mfsfd/etc/usbd.conf 681 ( for F in defaults/rc.conf netconfig protocols ; do \ 682 sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \ 683 ${RD}/trees/base/etc/$$F > ${RD}/mfsfd/stand/etc/$$F ; \ 684 done ) 685 grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \ 686 ${RD}/trees/base/etc/services | \ 687 sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \ 688 > ${RD}/mfsfd/stand/etc/services 689 ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services 690 ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig 691 cp ${RD}/trees/base/COPYRIGHT ${RD}/mfsfd/stand/help/COPYRIGHT.hlp 692.if !defined(NODOC) 693 @for i in ${DIST_DOCS_ARCH_INDEP}; do \ 694 cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \ 695 done 696 @for i in ${DIST_DOCS_ARCH_DEP}; do \ 697 cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \ 698 done 699 @mv ${RD}/mfsfd/stand/help/INSTALLATION.TXT ${RD}/mfsfd/stand/help/INSTALL.TXT 700 @mv ${RD}/mfsfd/stand/help/EARLY-ADOPTER.TXT ${RD}/mfsfd/stand/help/EARLY.TXT 701.endif 702 -test -f ${.CURDIR}/install.cfg && cp ${.CURDIR}/install.cfg ${RD}/mfsfd 703 @mkdir -p ${RD}/mfsfd/boot 704.if ${TARGET_ARCH} != "ia64" 705 @cp ${RD}/trees/base/boot/boot* ${RD}/mfsfd/boot 706.endif 707.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64" 708 @cp ${RD}/trees/base/boot/mbr ${RD}/mfsfd/boot 709.endif 710 @echo "Making the regular boot floppy." 711 @tar --exclude CVS -cf - -C ${.CURDIR}/../usr.sbin/sysinstall help | \ 712 tar xf - -C ${RD}/mfsfd/stand 713.if ${TARGET_ARCH} == "alpha" && !defined(NO_FLOPPIES) 714 rm -rf ${RD}/mfsfd/stand/help/* 715.endif 716.if defined(SMALLBOOTSIZE) 717.if exists(${.CURDIR}/${TARGET}/drivers-small.conf) 718 @rm -rf ${RD}/mfsfd/modules 719 @mkdir -p ${RD}/mfsfd/modules 720 @awk -f ${.CURDIR}/scripts/driver-copy2.awk 2 \ 721 ${.CURDIR}/${TARGET}/drivers-small.conf \ 722 ${RD}/trees/base/boot/kernel ${RD}/mfsfd/modules 723.endif 724 sh -e ${DOFS_SH} mfsroot ${RD} ${MNT} \ 725 ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL} 726 @gzip -9vc mfsroot > mfsroot.gz 727 @sh -e ${DOFS_SH} ${RD}/floppies/mfsroot-small.flp \ 728 ${RD} ${MNT} ${SMALLBOOTSIZE} mfsroot.gz \ 729 ${BOOTINODE} ${SMALLBOOTLABEL} 730.endif 731.if exists(${.CURDIR}/${TARGET}/drivers.conf) 732 @rm -rf ${RD}/mfsfd/modules 733 @mkdir -p ${RD}/mfsfd/modules 734 @awk -f ${.CURDIR}/scripts/driver-copy2.awk 2 \ 735 ${.CURDIR}/${TARGET}/drivers.conf \ 736 ${RD}/trees/base/boot/kernel ${RD}/mfsfd/modules 737 @rm -rf ${RD}/driversfd 738 @mkdir ${RD}/driversfd 739 @awk -f ${.CURDIR}/scripts/driver-copy2.awk 3 \ 740 ${.CURDIR}/${TARGET}/drivers.conf \ 741 ${RD}/trees/base/boot/kernel ${RD}/driversfd 742 -@rmdir ${RD}/driversfd 743 if [ -d ${RD}/driversfd ]; then \ 744 sh -e ${DOFS_SH} \ 745 ${RD}/floppies/drivers.flp ${RD} ${MNT} ${DRIVERSIZE} \ 746 ${RD}/driversfd ${DRIVERINODE} ${DRIVERLABEL}; \ 747 cd ${RD}/driversfd && awk -f ${.CURDIR}/scripts/driver-desc.awk \ 748 *.dsc >> ${RD}/floppies/DRIVERS.TXT; \ 749 fi 750.endif 751 sh -e ${DOFS_SH} mfsroot ${RD} ${MNT} \ 752 ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL} 753 @gzip -9vc mfsroot > mfsroot.gz 754 @mkdir -p ${RD}/mfsroot 755 @cp mfsroot.gz ${RD}/mfsroot 756.if !defined(NO_FLOPPIES) 757.if defined(BOOTSIZE) 758 @sh -e ${DOFS_SH} ${RD}/floppies/mfsroot.flp \ 759 ${RD} ${MNT} ${BOOTSIZE} mfsroot.gz ${BOOTINODE} ${BOOTLABEL} 760 @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern 761.endif 762.if defined(SMALLBOOTSIZE) 763 @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern-small FDSIZE=SMALL 764.endif 765.if defined(BIGBOOTSIZE) 766 @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot FDSIZE=BIG 767.endif 768.endif 769 @rm mfsroot mfsroot.gz 770 @echo "Regular and MFS boot floppies made." 771.endif 772 touch release.9 773 774# 775# --==## Create a fixit floppy ##==-- 776# 777release.10: 778.if !defined(NO_FLOPPIES) 779 @echo "Making fixit floppy." 780 @rm -rf ${RD}/fixitfd 781 @mkdir ${RD}/fixitfd 782 @cd ${RD}/fixitfd && \ 783 mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \ 784 usr/share/misc 785 @cp ${RD}/trees/base/etc/spwd.db ${RD}/trees/base/etc/group \ 786 ${RD}/fixitfd/etc 787 @sed -e 's/#.*//' ${RD}/trees/base/etc/protocols \ 788 > ${RD}/fixitfd/etc/protocols 789 @sed -e 's/#.*//' ${RD}/trees/base/usr/share/misc/scsi_modes \ 790 > ${RD}/fixitfd/usr/share/misc/scsi_modes 791 @cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile 792 @cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services 793 @cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar 794 @chmod 555 ${RD}/fixitfd/stand/tar 795.if defined(SMALLFIXITSIZE) 796 @cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit-small \ 797 DIR=${RD}/fixitfd/stand ZIP=false 798 @sh -e ${DOFS_SH} ${RD}/floppies/fixit-small.flp \ 799 ${RD} ${MNT} ${SMALLFIXITSIZE} ${RD}/fixitfd ${FIXITINODE} \ 800 ${SMALLFIXITLABEL} 801 @rm -rf ${RD}/fixitfd/stand 802 @mkdir ${RD}/fixitfd/stand 803.endif 804 @cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit \ 805 DIR=${RD}/fixitfd/stand ZIP=false 806 @sh -e ${DOFS_SH} ${RD}/floppies/fixit.flp ${RD} \ 807 ${MNT} ${FIXITSIZE} ${RD}/fixitfd ${FIXITINODE} ${FIXITLABEL} 808# Do our last minute floppies directory setup in a convenient place. 809.if !defined(NODOC) 810 @cp ${RND}/${RELNOTES_LANG}/installation/${TARGET}/article.txt \ 811 ${RD}/floppies/README.TXT 812 @(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5) 813.else 814 @(cd ${RD}/floppies; md5 *.flp > CHECKSUM.MD5) 815.endif 816.endif 817 touch release.10 818 819# 820# --==## Setup a suitable ftp-area ##==-- 821# 822ftp.1: 823 @echo "Setting up FTP distribution area" 824 @mkdir -p ${FD} 825 -@ln -s . ${FD}/${BUILDNAME} 826 @cd ${RD} && find floppies -print | cpio -dumpl ${FD} 827 @cd ${RD}/dists && find . -print | cpio -dumpl ${FD} 828.if !defined(NODOC) 829 @for i in ${DIST_DOCS_ARCH_INDEP}; do \ 830 cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \ 831 cp ${RND}/${RELNOTES_LANG}/$$i/article.html ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \ 832 done 833 @for i in ${DIST_DOCS_ARCH_DEP}; do \ 834 cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \ 835 cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \ 836 done 837 @cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${FD} 838 @mv ${FD}/INSTALLATION.TXT ${FD}/INSTALL.TXT 839 @mv ${FD}/INSTALLATION.HTM ${FD}/INSTALL.HTM 840 @mv ${FD}/EARLY-ADOPTER.TXT ${FD}/EARLY.TXT 841 @mv ${FD}/EARLY-ADOPTER.HTM ${FD}/EARLY.HTM 842.endif 843 @echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf 844.if !defined(NOPORTS) 845 @tar --exclude CVS -cBf - -C ${CD_DISC1} ports | tar -xBf - -C ${FD} 846.endif 847 touch ftp.1 848 849# 850# --==## Setup a suitable cdrom-area ##==-- 851# 852cdrom.1: 853 @echo "Setting up CDROM distribution area" 854 @mkdir -p ${CD_DISC1} ${CD_DISC2} 855 -@ln -s . ${CD_DISC1}/${BUILDNAME} 856 @cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1} 857 @cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1} 858 @for i in ${DISTRIBUTIONS} ; \ 859 do \ 860 if [ -d ${RD}/trees/$${i} ] ; then \ 861 chflags -R noschg ${RD}/trees/$${i} || true ; \ 862 ( cd ${RD}/trees/$${i} && \ 863 find . -depth -print | cpio -dumpl ${CD_DISC2} ) ; \ 864 fi \ 865 done 866 @rm -f ${CD_DISC2}/.profile 867 @cp ${.CURDIR}/fixit.profile ${CD_DISC2}/.profile 868 @echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf 869 @echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf 870.if !defined(NODOC) 871 @for i in ${DIST_DOCS_ARCH_INDEP}; do \ 872 cp ${RND}/${RELNOTES_LANG}/$$i/article.txt ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \ 873 cp ${RND}/${RELNOTES_LANG}/$$i/article.html ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \ 874 done 875 @for i in ${DIST_DOCS_ARCH_DEP}; do \ 876 cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \ 877 cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \ 878 done 879 @cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DISC1} 880 @mv ${CD_DISC1}/INSTALLATION.TXT ${CD_DISC1}/INSTALL.TXT 881 @mv ${CD_DISC1}/INSTALLATION.HTM ${CD_DISC1}/INSTALL.HTM 882 @mv ${CD_DISC1}/EARLY-ADOPTER.TXT ${CD_DISC1}/EARLY.TXT 883 @mv ${CD_DISC1}/EARLY-ADOPTER.HTM ${CD_DISC1}/EARLY.HTM 884.endif 885.if ${TARGET} != "pc98" 886 @echo "Setting up /boot" 887 @rm -f ${CD_DISC2}/boot/loader.conf 888 @cp ${RD}/mfsroot/mfsroot.gz ${CD_DISC2}/boot/mfsroot.gz 889 @echo 'mfsroot_load="YES"' > ${CD_DISC2}/boot/loader.conf 890 @echo 'mfsroot_type="mfs_root"' >> ${CD_DISC2}/boot/loader.conf 891 @echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_DISC2}/boot/loader.conf 892 @cp -Rp ${CD_DISC2}/boot ${CD_DISC1} 893.endif 894.if ${TARGET} == "i386" 895 @mkdir -p ${CD_DISC2}/floppies 896 @cp ${CD_DISC1}/floppies/boot.flp ${CD_DISC2}/floppies 897.endif 898.if !defined(NOPORTS) 899 @mkdir -p ${CD_DISC1}/ports && \ 900 tar --exclude CVS --exclude 'ports/distfiles/*' -czf \ 901 ${CD_DISC1}/ports/ports.tgz -C /usr ports && \ 902 cp ${.CURDIR}/scripts/ports-install.sh ${CD_DISC1}/ports/install.sh \ 903 && (cd ${CD_DISC1}/ports; md5 * > CHECKSUM.MD5) 904.endif 905 touch cdrom.1 906 907iso.1: 908.if exists(${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh) 909 @echo "Creating ISO images..." 910 @sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \ 911 fbsd_miniinst \ 912 ${CD}/${BUILDNAME}-${TARGET}-miniinst.iso ${CD_DISC1} 913 @sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \ 914 fbsd_livefs \ 915 ${CD}/${BUILDNAME}-${TARGET}-disc2.iso ${CD_DISC2} 916.if defined(CD_EXTRA_BITS) 917 @sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh \ 918 ${BOOTABLE} fbsd_boot \ 919 ${CD}/${BUILDNAME}-${TARGET}-disc1.iso ${CD_DISC1} \ 920 ${CD_EXTRA_BITS} \ 921 && false 922.endif 923 touch iso.1 924.else 925 @echo "Do not know how to create an ISO for ${TARGET_ARCH}." 926.endif 927 928# 929# --==## Documentation Project files such as the Handbook and FAQ ##==-- 930# 931doc.1: 932 @echo "Making docs..." 933 @for i in ${DOCPORTS}; do \ 934 cd /usr/ports/$$i && \ 935 env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \ 936 make all install clean BATCH=yes WITHOUT_X11=yes JADETEX=no \ 937 WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \ 938 done 939 @cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/base/usr/share/doc 940 touch doc.1 941 942# 943# --==## RELNOTESng: Next-generation replacements for *.TXT files ##==-- 944# 945doc.2: 946 @echo "Making release documentation..." 947 @cd ${.CURDIR}/doc && make all install clean 'FORMATS=html txt' INSTALL_COMPRESSED='' DOCDIR=${RND} 948 touch doc.2 949 950# Various "subroutine" and other supporting targets. 951 952# RD= 953# SD= 954# TD= 955# ARG= 956doTARBALL: 957.if !defined(SD) 958 @echo "SD undefined in doTARBALL" && exit 1 959.endif 960.if !defined(TD) 961 @echo "TD undefined in doTARBALL" && exit 1 962.endif 963.if !defined(ARG) 964 @echo "ARG undefined in doTARBALL" && exit 1 965.endif 966 @rm -rf ${RD}/dists/${TD}/${TN}* 967 @mkdir -p ${RD}/dists/${TD} 968 @( cd ${SD} && \ 969 tn=`echo ${TN} | tr '[A-Z]' '[a-z]' | cut -c1-8` && \ 970 echo rolling ${TD}/$$tn tarball &&\ 971 tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \ 972 ${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \ 973 sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn > \ 974 ${RD}/dists/${TD}/$$tn.inf && \ 975 if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \ 976 cp -p ${.CURDIR}/scripts/$${TD}-install.sh ${RD}/dists/${TD}/install.sh; \ 977 fi && \ 978 if [ "${SD}" != "/usr/src" ]; then \ 979 mtree -c -i -p ${SD}/${ARG} \ 980 -k gname,md5digest,mode,nlink,uname,size,link,type \ 981 > ${RD}/dists/${TD}/$$tn.mtree ; \ 982 else \ 983 true; \ 984 fi; \ 985 (cd ${RD}/dists/${TD}; \ 986 rm -f CHECKSUM.MD5; \ 987 md5 * > CHECKSUM.MD5) \ 988 ) 989 990.if target(release.9.${TARGET_ARCH}) 991RELEASE9=release.9.${TARGET_ARCH} 992.else 993RELEASE9=release.9 994.endif 995 996doRELEASE: release.1 release.2 release.3 ${DOCREL} release.4 release.5 \ 997 release.6 release.7 release.8 ${RELEASE9} ${FIXIT_TARGET} 998 @cd ${.CURDIR} && ${MAKE} ${EXTRAS} 999 @echo "Release done" 1000 1001floppies: 1002 @cd ${.CURDIR} && ${MAKE} boot.flp 1003 @cd ${.CURDIR} && ${MAKE} fixit.flp 1004 @cd ${RD} && find floppies -print | cpio -dumpl ${FD} 1005 1006boot.flp: 1007 @rm -f release.5 release.9 1008 @cd ${.CURDIR} && ${MAKE} release.5 release.9 CRUNCH_TARGETS=boot 1009 1010fixit.flp: 1011 @rm -f release.5 release.10 1012 @cd ${.CURDIR} && ${MAKE} release.5 release.10 CRUNCH_TARGETS=fixit 1013 1014installCRUNCH: 1015.if !defined(CRUNCH) 1016 @echo "CRUNCH undefined in installCRUNCH" && exit 1 1017.endif 1018.if !defined(DIR) 1019 @echo "DIR undefined in installCRUNCH" && exit 1 1020.endif 1021.if !defined(ZIP) 1022 @echo "ZIP undefined in installCRUNCH" && exit 1 1023.endif 1024 @if ${ZIP} ; then \ 1025 gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \ 1026 else \ 1027 ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \ 1028 fi 1029 @chmod 555 ${DIR}/${CRUNCH}_crunch 1030 @if [ -f ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf ] ; then \ 1031 for i in `crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \ 1032 ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \ 1033 done \ 1034 else \ 1035 for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \ 1036 ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \ 1037 done \ 1038 fi 1039 1040# 1041# --==## Put a filesystem into a BOOTMFS kernel ##==-- 1042# 1043doMFSKERN: 1044 @echo "Running ${.TARGET} for ${FSIMAGE}" 1045 @rm -f ${RD}/kernels/BOOTMFS ${RD}/kernels/BOOTMFS.${FSIMAGE} 1046 @cd ${.CURDIR}/../sys/${TARGET}/conf && \ 1047 sh ${.CURDIR}/${TARGET}/dokern.sh ${FDSIZE} < GENERIC > BOOTMFS && \ 1048 [ -r GENERIC.hints ] && cp GENERIC.hints BOOTMFS.hints 1049.if defined(FDSIZE) && ${FDSIZE} == "SMALL" && \ 1050 exists(${.CURDIR}/${TARGET}/drivers-small.conf) 1051 @awk -f ${.CURDIR}/scripts/driver-remove.awk \ 1052 ${.CURDIR}/${TARGET}/drivers-small.conf \ 1053 ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS 1054.elif exists(${.CURDIR}/${TARGET}/drivers.conf) 1055 @awk -f ${.CURDIR}/scripts/driver-remove.awk \ 1056 ${.CURDIR}/${TARGET}/drivers.conf \ 1057 ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS 1058.endif 1059 cd ${.CURDIR}/..; \ 1060 KERNEL_KO=BOOTMFS KODIR= \ 1061 ${CROSSMAKE} ${KERNEL_FLAGS} -DNO_MODULES -DNO_KERNELCLEAN \ 1062 KERNCONF=BOOTMFS COPTFLAGS="-Os -pipe" -DNO_CPU_COPTFLAGS \ 1063 buildkernel reinstallkernel \ 1064 DESTDIR=${RD}/kernels 1065 [ -r ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS.hints ] && \ 1066 cp ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS.hints ${RD}/kernels 1067 @rm -rf ${RD}/image.${FSIMAGE} 1068 @mkdir ${RD}/image.${FSIMAGE} 1069 @cd ${RD}/kernels && \ 1070 (chflags noschg BOOTMFS || true) && \ 1071 ${WMAKEENV} strip -R .comment BOOTMFS && \ 1072 cp BOOTMFS BOOTMFS.${FSIMAGE} && \ 1073 [ -r BOOTMFS.hints ] && mv BOOTMFS.hints BOOTMFS.${FSIMAGE}.hints 1074 mv ${RD}/kernels/BOOTMFS ${RD}/image.${FSIMAGE}/kernel 1075 @echo "Setting up /boot directory for ${FSIMAGE} floppy" 1076 @mkdir -p ${RD}/image.${FSIMAGE}/boot 1077.if ${TARGET} == "i386" 1078 @${WMAKEENV} kgzip -v -l ${RD}/trees/base/usr/lib/kgzldr.o \ 1079 -o ${RD}/image.${FSIMAGE}/boot/loader ${RD}/trees/base/boot/loader 1080.elif ${TARGET_ARCH} == "ia64" 1081 @cp ${RD}/trees/base/boot/loader.efi ${RD}/image.${FSIMAGE}/boot 1082.else 1083 @cp ${RD}/trees/base/boot/loader ${RD}/image.${FSIMAGE}/boot 1084.endif 1085 @[ -r ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints ] && \ 1086 sed -e '/^hint/s/^/set /' -e '/^#/d' \ 1087 ${RD}/kernels/BOOTMFS.${FSIMAGE}.hints > \ 1088 ${RD}/image.${FSIMAGE}/boot/device.hints && \ 1089 echo "include /boot/device.hints" > ${RD}/image.${FSIMAGE}/boot/loader.rc 1090 @echo "load /kernel" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1091.if !defined(FDSIZE) || ${FDSIZE} != "BIG" 1092 @echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1093 @echo "echo Please insert MFS root floppy and press enter:" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1094 @echo "read" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1095.endif 1096 @echo "load -t mfs_root /mfsroot" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1097.if ${TARGET_ARCH} != "ia64" 1098 @echo "set hint.acpi.0.disabled=1" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1099.endif 1100 @if [ -r ${RD}/floppies/drivers.flp ]; then \ 1101 echo "set driver_floppy=YES" >> ${RD}/image.${FSIMAGE}/boot/loader.rc; \ 1102 fi 1103 @echo "set module_path=\"/modules;/dist\"" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1104 @echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1105 @echo "autoboot 10" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 1106.if ${TARGET_ARCH} == "i386" && ${AUTO_KEYBOARD_DETECT} 1107 @echo "-P" >> ${RD}/image.${FSIMAGE}/boot.config 1108.endif 1109 @gzip -9v ${RD}/image.${FSIMAGE}/kernel 1110 @rm -f ${RD}/floppies/${FSIMAGE}.flp 1111.if defined(FDSIZE) && ${FDSIZE} == "BIG" 1112 @cp mfsroot.gz ${RD}/image.${FSIMAGE} 1113 sh -e ${DOFS_SH} ${RD}/floppies/${FSIMAGE}.flp \ 1114 ${RD} ${MNT} ${BIGBOOTSIZE} ${RD}/image.${FSIMAGE} \ 1115 ${BOOTINODE} ${BIGBOOTLABEL} 1116.elif defined(FDSIZE) && ${FDSIZE} == "SMALL" 1117 sh -e ${DOFS_SH} ${RD}/floppies/${FSIMAGE}.flp \ 1118 ${RD} ${MNT} ${SMALLBOOTSIZE} ${RD}/image.${FSIMAGE} \ 1119 ${BOOTINODE} ${SMALLBOOTLABEL} 1120.else 1121 sh -e ${DOFS_SH} ${RD}/floppies/${FSIMAGE}.flp \ 1122 ${RD} ${MNT} ${BOOTSIZE} ${RD}/image.${FSIMAGE} \ 1123 ${BOOTINODE} ${BOOTLABEL} 1124.endif 1125 @echo "Created ${RD}/floppies/${FSIMAGE}.flp" 1126 1127.include <bsd.obj.mk> 1128