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