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= 2000 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 @echo "Making the regular boot floppy." 493 @tar --exclude CVS -cf - -C ${.CURDIR}/sysinstall help | \ 494 tar xf - -C ${RD}/mfsfd/stand 495 @echo "Compressing doc files..." 496 @gzip -9 ${RD}/mfsfd/stand/help/*.hlp 497 sh -e ${.CURDIR}/scripts/doFS.sh -s mfsroot ${RD} ${MNT} \ 498 ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL} 499 @gzip -9vc mfsroot > mfsroot.gz 500 @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/mfsroot.flp \ 501 ${RD} ${MNT} ${BOOTSIZE} mfsroot.gz ${BOOTINODE} ${BOOTLABEL} 502 @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=kern 503 @cd ${.CURDIR} && ${MAKE} doMFSKERN FSIMAGE=boot BIGBOOT=YES 504 @rm mfsroot mfsroot.gz mfsroot.size 505 @echo "Regular and MFS boot floppies made." 506 touch release.8 507 508# 509# --==## Create a fixit floppy ##==-- 510# 511release.9: 512 @echo "Making fixit floppy." 513 @rm -rf ${RD}/fixitfd 514 @mkdir ${RD}/fixitfd 515 @cd ${RD}/fixitfd && \ 516 mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \ 517 usr/share/misc 518 @cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=fixit \ 519 DIR=${RD}/fixitfd/stand ZIP=false 520 @( cd ${RD}/fixitfd/dev && \ 521 sed -e '/^PATH/s/^/#/' ${RD}/trees/bin/dev/MAKEDEV > MAKEDEV && \ 522 chmod 755 MAKEDEV && \ 523 sh MAKEDEV all ) 524 @cp ${RD}/trees/bin/etc/spwd.db ${RD}/trees/bin/etc/group \ 525 ${RD}/trees/bin/etc/protocols ${RD}/fixitfd/etc 526 @cp ${RD}/trees/bin/usr/share/misc/scsi_modes \ 527 ${RD}/fixitfd/usr/share/misc 528 @cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile 529 @cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services 530 @cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar 531 @chmod 555 ${RD}/fixitfd/stand/tar 532 @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/fixit.flp ${RD} \ 533 ${MNT} ${FIXITSIZE} ${RD}/fixitfd ${FIXITINODE} ${FIXITLABEL} 534# Do our last minute floppies directory setup in a convenient place. 535 @cp ${.CURDIR}/texts/FLOPPIES.TXT ${RD}/floppies/README.TXT 536 @(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5) 537.if ${MACHINE_ARCH} == "i386" 538 @cp ${.CURDIR}/texts/PCCARD.TXT ${RD}/floppies/pccard/README.TXT 539 @(cd ${RD}/floppies/pccard; md5 *.flp > CHECKSUM.MD5) 540.endif 541 touch release.9 542 543# 544# --==## Setup a suitable ftp-area ##==-- 545# 546ftp.1: 547 @echo "Setting up FTP distribution area" 548 @mkdir -p ${FD} 549 @cd ${RD} && find floppies -print | cpio -dumpl ${FD} 550 @cd ${RD}/dists && find . -print | cpio -dumpl ${FD} 551 @for i in ${DIST_DOCS}; do \ 552 if [ -f ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ]; then \ 553 cp ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ${FD}; \ 554 else \ 555 cp ${.CURDIR}/texts/$${i} ${FD}; \ 556 fi; \ 557 done 558 @echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf 559.if !defined(NOPORTS) 560 @tar --exclude CVS -cBf - -C ${CD_DISC1} ports | tar -xBf - -C ${FD} 561.endif 562 563# 564# --==## Setup a suitable cdrom-area ##==-- 565# 566cdrom.1: 567 @echo "Setting up CDROM distribution area" 568 @mkdir -p ${CD_DISC1} ${CD_DISC2} 569 @cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1} 570 @cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1} 571 @ln -f ${RD}/kernels/MFSKERNEL.boot ${CD_DISC1}/kernel 572 @for i in ${DISTRIBUTIONS} ; \ 573 do \ 574 if [ -d ${RD}/trees/$${i} ] ; then \ 575 chflags -R noschg ${RD}/trees/$${i} || true ; \ 576 ( cd ${RD}/trees/$${i} && \ 577 find . -depth -print | cpio -dumpl ${CD_DISC2} ) ; \ 578 fi \ 579 done 580 @rm -f ${CD_DISC2}/.profile 581 @cp ${.CURDIR}/fixit.profile ${CD_DISC2}/.profile 582 @echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf 583 @echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf 584 @for i in ${DIST_DOCS}; do \ 585 if [ -f ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ]; then \ 586 cp ${.CURDIR}/texts/${MACHINE_ARCH}/$${i} ${CD_DISC1}; \ 587 else \ 588 cp ${.CURDIR}/texts/$${i} ${CD_DISC1}; \ 589 fi; \ 590 done 591.if !defined(NOPORTS) 592 @-rm -rf /usr/ports/distfiles/* 593 @mkdir -p ${CD_DISC1}/ports && \ 594 tar --exclude CVS -czf ${CD_DISC1}/ports/ports.tgz -C /usr ports && \ 595 cp ${.CURDIR}/scripts/ports-install.sh ${CD_DISC1}/ports/install.sh \ 596 && (cd ${CD_DISC1}/ports; md5 * > CHECKSUM.MD5) 597.endif 598 599doc.1: 600 @echo "Making docs..." 601 @for i in ${DOCPORTS}; do \ 602 cd /usr/ports/$$i && make all install clean JADETEX=no FORCE_PKG_REGISTER=yes; \ 603 done 604 @cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/bin/usr/share/doc 605 touch doc.1 606 607# Various "subroutine" and other supporting targets. 608 609doTARBALL: 610.if !defined(SD) 611 @echo "SD undefined in doTARBALL" && exit 1 612.endif 613.if !defined(TD) 614 @echo "TB undefined in doTARBALL" && exit 1 615.endif 616.if !defined(ARG) 617 @echo "ARG undefined in doTARBALL" && exit 1 618.endif 619 @rm -rf ${RD}/dists/${TD}/${TN}* 620 @mkdir -p ${RD}/dists/${TD} 621 @( cd ${SD} && \ 622 tn=`echo ${TN} | tr '[A-Z]' '[a-z]' | cut -c1-8` && \ 623 echo rolling ${TD}/$$tn tarball &&\ 624 tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \ 625 ${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \ 626 sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn > \ 627 ${RD}/dists/${TD}/$$tn.inf && \ 628 if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \ 629 cp -p ${.CURDIR}/scripts/$${TD}-install.sh ${RD}/dists/${TD}/install.sh; \ 630 fi && \ 631 if [ "${SD}" != "/usr/src" ]; then \ 632 mtree -c -i -p ${SD}/${ARG} \ 633 -k gname,md5digest,mode,nlink,uname,size,link,type \ 634 > ${RD}/dists/${TD}/$$tn.mtree ; \ 635 else \ 636 true; \ 637 fi; \ 638 (cd ${RD}/dists/${TD}; \ 639 rm -f CHECKSUM.MD5; \ 640 md5 * > CHECKSUM.MD5) \ 641 ) 642 643doRELEASE: release.1 release.2 ${DOCREL} release.3 release.4 release.5 \ 644 release.6 release.7 release.8 release.9 645 @cd ${.CURDIR} && ${MAKE} ${EXTRAS} 646 @echo "Release done" 647 648floppies: 649.if ${MACHINE_ARCH} == "i386" 650 @cd ${.CURDIR} && ${MAKE} PCCARD=YES boot.flp 651 mv ${RD}/floppies/boot.flp ${RD}/floppies/kern.flp \ 652 ${RD}/floppies/mfsroot.flp ${RD}/floppies/pccard 653.endif 654 @cd ${.CURDIR} && ${MAKE} boot.flp 655 @cd ${.CURDIR} && ${MAKE} fixit.flp 656 @cd ${RD} && find floppies -print | cpio -dumpl ${FD} 657 658boot.flp: 659 @rm -f release.4 release.8 660 @cd ${.CURDIR} && ${MAKE} release.4 release.8 CRUNCH_TARGETS=boot 661 662fixit.flp: 663 @rm -f release.4 release.9 664 @cd ${.CURDIR} && ${MAKE} release.4 release.9 CRUNCH_TARGETS=fixit 665 666write_mfs_in_kernel: ${.CURDIR}/write_mfs_in_kernel.c 667 ${CC} ${CFLAGS} -o write_mfs_in_kernel ${.CURDIR}/write_mfs_in_kernel.c 668 669installCRUNCH: 670.if !defined(CRUNCH) 671 @echo "CRUNCH undefined in installCRUNCH" && exit 1 672.endif 673.if !defined(DIR) 674 @echo "DIR undefined in installCRUNCH" && exit 1 675.endif 676.if !defined(ZIP) 677 @echo "ZIP undefined in installCRUNCH" && exit 1 678.endif 679 @if ${ZIP} ; then \ 680 gzip -9 < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \ 681 else \ 682 ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \ 683 fi 684 @chmod 555 ${DIR}/${CRUNCH}_crunch 685 @if [ -f ${.OBJDIR}/${CRUNCH}_crunch.conf ] ; then \ 686 for i in `crunchgen -l ${.OBJDIR}/${CRUNCH}_crunch.conf` ; do \ 687 ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \ 688 done \ 689 else \ 690 for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \ 691 ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \ 692 done \ 693 fi 694 695# 696# --==## Compile a kernel by name ${KERNEL} ##==-- 697# 698# We don't erase the sys/compile/${KERNEL} directory, since somebody 699# may want to reuse it (release.8 presently) 700# 701doKERNEL: 702 @rm -f ${RD}/kernels/${KERNEL} 703 @cd ${.CURDIR}/../sys/${MACHINE_ARCH}/conf && config ${KERNEL} 704 @cd ${.CURDIR}/../sys/compile/${KERNEL} && \ 705 make depend && \ 706 make ${KERNEL} && \ 707 cp ${KERNEL} ${RD}/kernels/${KERNEL} 708 709# 710# --==## Put a filesystem into a BOOTMFS kernel ##==-- 711# 712doMFSKERN: 713 @echo "Running doMFSKERN for ${FSIMAGE}" 714 @rm -f ${RD}/kernels/BOOTMFS.${FSIMAGE} 715 @cd ${.CURDIR}/../sys/${MACHINE_ARCH}/conf && \ 716 sh ${.CURDIR}/scripts/dokern.sh ${BIGBOOT} < ${KERNCONF} > BOOTMFS 717.if ${MACHINE_ARCH} == "i386" 718 @echo "options INTRO_USERCONFIG" >> ${.CURDIR}/../sys/i386/conf/BOOTMFS 719.endif 720.if defined(BIGBOOT) 721 @echo "options \"MFS_ROOT_SIZE=`cat mfsroot.size`\"" >> \ 722 ${.CURDIR}/../sys/${MACHINE_ARCH}/conf/BOOTMFS 723.endif 724 @cd ${.CURDIR} && ${MAKE} doKERNEL KERNEL=BOOTMFS 725 @rm -rf ${RD}/image.${FSIMAGE} 726 @mkdir ${RD}/image.${FSIMAGE} 727 @cp ${RD}/kernels/BOOTMFS ${RD}/kernels/BOOTMFS.${FSIMAGE} 728 mv ${RD}/kernels/BOOTMFS ${RD}/image.${FSIMAGE}/kernel 729 @echo "Setting up /boot directory for ${FSIMAGE} floppy" 730 @mkdir -p ${RD}/image.${FSIMAGE}/boot 731 @cp /boot/boot[12] /boot/loader ${RD}/image.${FSIMAGE}/boot 732.if !defined(BIGBOOT) || ${MACHINE_ARCH} == "alpha" 733 @echo "load /kernel" > ${RD}/image.${FSIMAGE}/boot/loader.rc 734 @echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 735 @echo "echo Please insert MFS root floppy and press enter:" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 736 @echo "read" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 737 @echo "load -t mfs_root /mfsroot" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 738.endif 739 @echo "echo \\007\\007" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 740 @echo "autoboot 10" >> ${RD}/image.${FSIMAGE}/boot/loader.rc 741 @touch ${RD}/image.${FSIMAGE}/boot/loader.config 742.if ${MACHINE_ARCH} == "i386" 743 @echo "-P" >> ${RD}/image.${FSIMAGE}/boot.config 744.endif 745.if defined(BIGBOOT) 746 @echo "Writing MFS image into kernel for ${FSIMAGE} floppy" 747 @./write_mfs_in_kernel ${RD}/image.${FSIMAGE}/kernel mfsroot 748 @cp ${RD}/image.${FSIMAGE}/kernel ${RD}/kernels/MFSKERNEL.${FSIMAGE} 749.endif 750 @gzip -9v ${RD}/image.${FSIMAGE}/kernel 751 @touch ${RD}/image.${FSIMAGE}/kernel.config 752 @rm -f ${RD}/floppies/${FSIMAGE}.flp 753.if defined(BIGBOOT) 754 sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \ 755 ${RD} ${MNT} ${BIGBOOTSIZE} ${RD}/image.${FSIMAGE} \ 756 ${BOOTINODE} ${BIGBOOTLABEL} 757.else 758 sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/${FSIMAGE}.flp \ 759 ${RD} ${MNT} ${BOOTSIZE} ${RD}/image.${FSIMAGE} \ 760 ${BOOTINODE} ${BOOTLABEL} 761.endif 762 @echo "Created ${RD}/floppies/${FSIMAGE}.flp" 763 764.include <bsd.prog.mk> 765