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