1afb33690SMurray Stokely.\" Copyright (c) 2002 Murray Stokely <murray@FreeBSD.org> 2afb33690SMurray Stokely.\" All rights reserved. 3de26e0adSMurray Stokely.\" 4de26e0adSMurray Stokely.\" Redistribution and use in source and binary forms, with or without 5de26e0adSMurray Stokely.\" modification, are permitted provided that the following conditions 6de26e0adSMurray Stokely.\" are met: 7de26e0adSMurray Stokely.\" 1. Redistributions of source code must retain the above copyright 8de26e0adSMurray Stokely.\" notice, this list of conditions and the following disclaimer. 9de26e0adSMurray Stokely.\" 2. Redistributions in binary form must reproduce the above copyright 10de26e0adSMurray Stokely.\" notice, this list of conditions and the following disclaimer in the 11de26e0adSMurray Stokely.\" documentation and/or other materials provided with the distribution. 12de26e0adSMurray Stokely.\" 13de26e0adSMurray Stokely.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 14de26e0adSMurray Stokely.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15de26e0adSMurray Stokely.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16de26e0adSMurray Stokely.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE 17de26e0adSMurray Stokely.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18de26e0adSMurray Stokely.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19de26e0adSMurray Stokely.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20de26e0adSMurray Stokely.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21de26e0adSMurray Stokely.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22de26e0adSMurray Stokely.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23de26e0adSMurray Stokely.\" SUCH DAMAGE. 24de26e0adSMurray Stokely.\" 25de26e0adSMurray Stokely.\" $FreeBSD$ 26de26e0adSMurray Stokely.\" 27e8423d00SNathan Whitehorn.Dd March 18, 2011 28de26e0adSMurray Stokely.Dt RELEASE 7 29de26e0adSMurray Stokely.Os 30de26e0adSMurray Stokely.Sh NAME 31de26e0adSMurray Stokely.Nm release 32afb33690SMurray Stokely.Nd "release building infrastructure" 33de26e0adSMurray Stokely.Sh DESCRIPTION 34de26e0adSMurray Stokely.Fx 35de26e0adSMurray Stokelyprovides a complete build environment suitable for users to make 36de26e0adSMurray Stokelyfull releases of the 37de26e0adSMurray Stokely.Fx 38994c71f0SMurray Stokelyoperating system. 39de26e0adSMurray StokelyAll of the tools necessary to build a release are available from the 40*feacd98eSNathan Whitehorn.Fx 41*feacd98eSNathan Whitehornsource code repository in 42de26e0adSMurray Stokely.Pa src/release . 43de26e0adSMurray StokelyA complete release can actually be built with only a single command, 44eee69fccSMurray Stokelyincluding the creation of ISO images suitable for burning to CD-ROM, 45*feacd98eSNathan Whitehornmemory stick images, and an FTP install directory. 46de26e0adSMurray StokelyThis command is aptly named 47afb33690SMurray Stokely.Dq Li "make release" . 48de26e0adSMurray Stokely.Pp 49e8423d00SNathan WhitehornFor some users, it may be desirable to provide an absolutely clean 50e8423d00SNathan Whitehornbuild environment, with no local modifications to the source tree or to 51e8423d00SNathan Whitehorn.Xr make.conf 5 , 52e8423d00SNathan Whitehornand with clean checkouts of specific versions of the doc, src, and ports 53e8423d00SNathan Whitehorntrees. For this purpose, a script 54e8423d00SNathan Whitehorn.Pq Pa src/release/generate-release.sh 55e8423d00SNathan Whitehornis provided to automate these checkouts and then execute 56e8423d00SNathan Whitehorn.Dq Li "make release" 57e8423d00SNathan Whitehornin a clean 58e8423d00SNathan Whitehorn.Xr chroot 8 . 59e8423d00SNathan Whitehorn.Pp 60de26e0adSMurray StokelyBefore attempting to build a release, the user is expected to be 61994c71f0SMurray Stokelyfamiliar with the contents of 62de26e0adSMurray Stokely.Xr build 7 , 6347280c4bSRuslan Ermilovand should have experience upgrading systems from source. 64e8423d00SNathan Whitehorn.Pp 65de26e0adSMurray StokelyThe release build process requires that 66de26e0adSMurray Stokely.Pa /usr/obj 67de26e0adSMurray Stokelybe populated with the output of 68e8423d00SNathan Whitehorn.Dq Li "make buildworld" . 69e8423d00SNathan WhitehornThis is necessary to provide the object files for the release or, when 70e8423d00SNathan Whitehornusing 71e8423d00SNathan Whitehorn.Pa generate-release.sh , 72e8423d00SNathan Whitehornso that the object files for a complete system can be installed into a clean 73de26e0adSMurray Stokely.Xr chroot 8 74e8423d00SNathan Whitehornenvironment. In this second case, the built world must be capable of running 75e8423d00SNathan Whitehornon the build system (i.e. it must be for the same architecture and be 76e8423d00SNathan Whitehorncompatible with the installed kernel). 77e8423d00SNathan WhitehornThe release procedure on some architectures may also require that the 78994c71f0SMurray Stokely.Xr md 4 79994c71f0SMurray Stokely(memory disk) device driver be present in the kernel 80919b0026SDavid E. O'Brien(either by being compiled in or available as a module). 81de26e0adSMurray Stokely.Pp 82de26e0adSMurray StokelyThis document does not cover source code management, quality 83de26e0adSMurray Stokelyassurance, or other aspects of the release engineering process. 84e8423d00SNathan Whitehorn.Sh CLEAN RELEASE GENERATION 85e8423d00SNathan WhitehornOfficial releases of FreeBSD are produced in a totally clean environment to 86e8423d00SNathan Whitehornensure consistency between the versions of the src, ports, and doc trees 87e8423d00SNathan Whitehornand to avoid contamination from the host system (e.g. local patches, changes 88e8423d00SNathan Whitehornto 89e8423d00SNathan Whitehorn.Xr make.conf 5 , 90e8423d00SNathan Whitehornetc.). This is accomplished using the wrapper script 91e8423d00SNathan Whitehorn.Pa src/release/generate-release.sh . 92e8423d00SNathan Whitehorn.Pp 93e8423d00SNathan Whitehorn.Ic generate-release.sh 94e8423d00SNathan Whitehornsvn-branch scratch-dir 95e8423d00SNathan Whitehorn.Pp 96e8423d00SNathan Whitehorn.Ic generate-release.sh 97e8423d00SNathan Whitehorncalls 98e8423d00SNathan Whitehorn.Dq Li "make installworld" 99e8423d00SNathan Whitehornto generate a 100e8423d00SNathan Whitehorn.Xr chroot 8 101e8423d00SNathan Whitehornenvironment in 102e8423d00SNathan Whitehorn.Ar scratch-dir . 103e8423d00SNathan WhitehornIt then checks out the src tree specified by 104e8423d00SNathan Whitehorn.Ar svn-branch 105e8423d00SNathan Whitehornusing 106e8423d00SNathan Whitehorn.Xr svn 1 107e8423d00SNathan Whitehornand (optionally) the ports and documentation trees using 108e8423d00SNathan Whitehorn.Xr csup 1 109e8423d00SNathan Whitehornor 110e8423d00SNathan Whitehorn.Xr cvs 1 . 111e8423d00SNathan WhitehornOnce the various source trees have been obtained, it executes 112e8423d00SNathan Whitehorn.Dq Li "make release" 113e8423d00SNathan Whitehornwithin the 114e8423d00SNathan Whitehorn.Xr chroot 8 115e8423d00SNathan Whitehornenvironment and places the result in 116e8423d00SNathan Whitehorn.Pa $scratch-dir/R . 117e8423d00SNathan WhitehornNote that because this uses a chroot, it cannot be used to cross-build 118e8423d00SNathan Whitehorn.Fx 119e8423d00SNathan Whitehornrelease media. 120e8423d00SNathan Whitehorn.Pp 121e8423d00SNathan WhitehornEnvironment variables: 122e8423d00SNathan Whitehorn.Bl -tag -width ".Cm MAKE_FLAGS" 123e8423d00SNathan Whitehorn.It Ev CVSUP_HOST 124e8423d00SNathan WhitehornThe CVSUP server to use for the doc and ports trees. One of 125e8423d00SNathan Whitehorn.Ev CVSUP_HOST 126e8423d00SNathan Whitehornor 127e8423d00SNathan Whitehorn.Ev CVSROOT 128e8423d00SNathan Whitehornmust be specified for ports and documentation to be included in the release. 129e8423d00SNathan Whitehorn.It Ev CVSROOT 130e8423d00SNathan WhitehornThe location of the 131e8423d00SNathan Whitehorn.Fx 132e8423d00SNathan WhitehornCVS repository to use for the doc and ports trees. One of 133e8423d00SNathan Whitehorn.Ev CVSUP_HOST 134e8423d00SNathan Whitehornor 135e8423d00SNathan Whitehorn.Ev CVSROOT 136e8423d00SNathan Whitehornmust be specified for ports and documentation to be included in the release. 137e8423d00SNathan Whitehorn.It Ev CVS_TAG 138e8423d00SNathan WhitehornIf the variable 139e8423d00SNathan Whitehorn.Ev CVS_TAG 140e8423d00SNathan Whitehornis set, that tag will be used for CVS checkouts (doc and ports), otherwise 141e8423d00SNathan Whitehorn.Ic generate-release.sh 142e8423d00SNathan Whitehornwill use HEAD. 143e8423d00SNathan Whitehorn.It Ev MAKE_FLAGS 144e8423d00SNathan WhitehornThis environment variable can be set to pass flags (e.g. -j) to 145e8423d00SNathan Whitehorn.Xr make 1 146e8423d00SNathan Whitehornwhen invoked by the script. 147e8423d00SNathan Whitehorn.It Ev SVNROOT 148e8423d00SNathan WhitehornThe location of the FreeBSD SVN source repository. Defaults to 149e8423d00SNathan Whitehorn.Pa svn://svn.freebsd.org/base . 150e8423d00SNathan Whitehorn.El 151e8423d00SNathan Whitehorn.Sh MAKEFILE TARGETS 152de26e0adSMurray StokelyThe release makefile 153994c71f0SMurray Stokely.Pq Pa src/release/Makefile 154de26e0adSMurray Stokelyis fairly abstruse. 155de26e0adSMurray StokelyMost developers will only be concerned with the 156afb33690SMurray Stokely.Cm release 157299a8b95SNathan Whitehornand 158299a8b95SNathan Whitehorn.Cm install 159299a8b95SNathan Whitehorntargets. 160994c71f0SMurray Stokely.\" XXX: Some sort of introduction to this list? All the others have one. 161e8423d00SNathan Whitehorn.Bl -tag -width ".Cm packagesystem" 162afb33690SMurray Stokely.It Cm release 163e8423d00SNathan WhitehornMeta-target to build all release media and distributions applicable to this 164299a8b95SNathan Whitehornplatform. 165299a8b95SNathan Whitehorn.It Cm install 166299a8b95SNathan WhitehornCopy all produced release media to 167299a8b95SNathan Whitehorn.Pa ${DESTDIR} . 168e8423d00SNathan Whitehorn.It Cm cdrom 169e8423d00SNathan WhitehornBuilds installation CD-ROM images. On some systems, this may require that 170e8423d00SNathan Whitehorn.Xr mkisofs 8 171e8423d00SNathan Whitehornbe installed 172e8423d00SNathan Whitehorn.Pq Pa sysutils/cdrtools 173e8423d00SNathan Whitehornand possibly that the 174e8423d00SNathan Whitehorn.Xr md 4 175e8423d00SNathan Whitehorn(memory disk) device driver be present in the kernel 176e8423d00SNathan Whitehorn(either by being compiled in or available as a module). This target 177299a8b95SNathan Whitehornproduces files called 178e8423d00SNathan Whitehorn.Pa release.iso 179299a8b95SNathan Whitehornand 180299a8b95SNathan Whitehorn.Pa bootonly.iso 181e8423d00SNathan Whitehornas its output. 182e8423d00SNathan Whitehorn.It Cm memstick 183e8423d00SNathan WhitehornBuilds an installation memory stick image named 184e8423d00SNathan Whitehorn.Pa memstick . 185e8423d00SNathan WhitehornNot applicable on all platforms. Requires that the 186e8423d00SNathan Whitehorn.Xr md 4 187e8423d00SNathan Whitehorn(memory disk) device driver be present in the kernel 188e8423d00SNathan Whitehorn(either by being compiled in or available as a module). 189e8423d00SNathan Whitehorn.It Cm ftp 190e8423d00SNathan WhitehornCreates a directory named 191e8423d00SNathan Whitehorn.Pa ftp 192e8423d00SNathan Whitehorncontaining the distribution files used in network installations 193e8423d00SNathan Whitehornand suitable for upload to an FTP mirror. 194de26e0adSMurray Stokely.El 195de26e0adSMurray Stokely.Pp 196e8423d00SNathan WhitehornMajor subtargets called by targets above: 197e8423d00SNathan Whitehorn.Bl -tag -width ".Cm packagesystem" 198e8423d00SNathan Whitehorn.It Cm packagesystem 199e8423d00SNathan WhitehornGenerates all the distribution archives (e.g. base, kernel, ports, doc) 200e8423d00SNathan Whitehornapplicable on this platform. 201e8423d00SNathan Whitehorn.It Cm system 202e8423d00SNathan WhitehornBuilds a bootable installation system containing all the distribution files 203e8423d00SNathan Whitehornpackaged by the 204e8423d00SNathan Whitehorn.Cm packagesystem 205e8423d00SNathan Whitehorntarget, and suitable for imaging by the 206e8423d00SNathan Whitehorn.Cm cdrom 207e8423d00SNathan Whitehornand 208e8423d00SNathan Whitehorn.Cm memstick 209e8423d00SNathan Whitehorntargets. 210e8423d00SNathan Whitehorn.It Cm reldoc 211994c71f0SMurray StokelyBuilds the release documentation. 212994c71f0SMurray StokelyThis includes the release notes, 213e8423d00SNathan Whitehornhardware guide, and installation instructions. Other documentation (e.g. 214e8423d00SNathan Whitehornthe Handbook) is built during the 215e8423d00SNathan Whitehorn.Cm base.txz 216e8423d00SNathan Whitehorntarget invoked by 217e8423d00SNathan Whitehorn.Cm packagesystem. 218de26e0adSMurray Stokely.El 219de26e0adSMurray Stokely.Sh ENVIRONMENT 220de26e0adSMurray StokelyOptional variables: 221e8423d00SNathan Whitehorn.Bl -tag -width ".Va TARGET_ARCH" 222e8423d00SNathan Whitehorn.It Va WORLDDIR 223e8423d00SNathan WhitehornLocation of a directory containing the src tree. By default, the directory 224e8423d00SNathan Whitehornabove the one containing the makefile 225e8423d00SNathan Whitehorn.Pq Pa src . 226e8423d00SNathan Whitehorn.It Va PORTSDIR 227e8423d00SNathan WhitehornLocation of a directory containing the ports tree. By default, 228e8423d00SNathan Whitehorn.Pa /usr/ports . 229e8423d00SNathan WhitehornIf it is unset or cannot be found, ports will not be included in the release. 230e8423d00SNathan Whitehorn.It Va DOCDIR 231e8423d00SNathan WhitehornLocation of a directory containing the doc tree. By default, 232e8423d00SNathan Whitehorn.Pa /usr/doc . 233e8423d00SNathan WhitehornIf it is unset or cannot be found, most documentation will not be included in 234e8423d00SNathan Whitehornthe release; see 235e8423d00SNathan Whitehorn.Ev NODOC 236e8423d00SNathan Whitehornbelow. 237e8423d00SNathan Whitehorn.It Va NOPORTS 238e8423d00SNathan WhitehornIf defined, the Ports Collection will be omitted from the release. 239e8423d00SNathan Whitehorn.It Va NOSRC 240e8423d00SNathan WhitehornIf set, do not include system source code in the release. 2411bcf2f1aSMurray Stokely.It Va NODOC 2428d2a74b6SMurray StokelyIf defined, the SGML-based documentation from the 243de26e0adSMurray Stokely.Fx 244eee69fccSMurray StokelyDocumentation Project will not be built. 245eee69fccSMurray StokelyHowever, the 246eee69fccSMurray Stokely.Dq doc 247eee69fccSMurray Stokelydistribution will still be created with the minimal documentation set 248eee69fccSMurray Stokelyprovided in 249eee69fccSMurray Stokely.Pa src/share/doc . 25025923b97SRuslan Ermilov.It Va TARGET 25125923b97SRuslan ErmilovThe target hardware platform. 25225923b97SRuslan ErmilovThis is analogous to the 25325923b97SRuslan Ermilov.Dq Nm uname Fl m 25425923b97SRuslan Ermilovoutput. 25525923b97SRuslan ErmilovThis is necessary to cross-build some target architectures. 25625923b97SRuslan ErmilovFor example, cross-building for PC98 machines requires 25725923b97SRuslan Ermilov.Va TARGET_ARCH Ns = Ns Li i386 25825923b97SRuslan Ermilovand 25925923b97SRuslan Ermilov.Va TARGET Ns = Ns Li pc98 . 260e8423d00SNathan WhitehornIf not set, 261e8423d00SNathan Whitehorn.Va TARGET 262e8423d00SNathan Whitehorndefaults to the current hardware platform. 263e8423d00SNathan Whitehorn.It Va TARGET_ARCH 264e8423d00SNathan WhitehornThe target machine processor architecture. 265e8423d00SNathan WhitehornThis is analogous to the 266e8423d00SNathan Whitehorn.Dq Nm uname Fl p 267e8423d00SNathan Whitehornoutput. 268e8423d00SNathan WhitehornSet this to cross-build for a different architecture. 269e8423d00SNathan WhitehornIf not set, 270e8423d00SNathan Whitehorn.Va TARGET_ARCH 271e8423d00SNathan Whitehorndefaults to the current machine architecture, unless 272e8423d00SNathan Whitehorn.Va TARGET 273e8423d00SNathan Whitehornis also set, in which case it defaults to the appropriate 274e8423d00SNathan Whitehornvalue for that platform. 275e8423d00SNathan WhitehornTypically, one only needs to set 276e8423d00SNathan Whitehorn.Va TARGET . 277de26e0adSMurray Stokely.El 278de26e0adSMurray Stokely.Sh FILES 279de26e0adSMurray Stokely.Bl -tag -compact 280de26e0adSMurray Stokely.It Pa /usr/doc/Makefile 281de26e0adSMurray Stokely.It Pa /usr/doc/share/mk/doc.project.mk 282de26e0adSMurray Stokely.It Pa /usr/ports/Mk/bsd.port.mk 283de26e0adSMurray Stokely.It Pa /usr/ports/Mk/bsd.sites.mk 284de26e0adSMurray Stokely.It Pa /usr/share/examples/etc/make.conf 285de26e0adSMurray Stokely.It Pa /usr/src/Makefile 286de26e0adSMurray Stokely.It Pa /usr/src/Makefile.inc1 287de26e0adSMurray Stokely.It Pa /usr/src/release/Makefile 288e8423d00SNathan Whitehorn.It Pa /usr/src/release/generate-release.sh 289de26e0adSMurray Stokely.El 290de26e0adSMurray Stokely.Sh EXAMPLES 291e8423d00SNathan WhitehornThe following sequence of commands can be used to build a 292e8423d00SNathan Whitehorn.Dq "-CURRENT snapshot": 293de26e0adSMurray Stokely.Bd -literal -offset indent 294de26e0adSMurray Stokelycd /usr 295e8423d00SNathan Whitehornsvn co svn://svn.freebsd.org/base/head src 296de26e0adSMurray Stokelycd src 297de26e0adSMurray Stokelymake buildworld 298de26e0adSMurray Stokelycd release 2998ef63d0dSNathan Whitehornmake release 3008ef63d0dSNathan Whitehornmake install DESTDIR=/var/freebsd-snapshot 301de26e0adSMurray Stokely.Ed 302de26e0adSMurray Stokely.Pp 303299a8b95SNathan WhitehornAfter running these commands, all produced distribution files (tarballs 304299a8b95SNathan Whitehornfor FTP, CD-ROM images, etc.) are available in the 305299a8b95SNathan Whitehorn.Pa /var/freebsd-snapshot 306de26e0adSMurray Stokelydirectory. 307de26e0adSMurray Stokely.Pp 308994c71f0SMurray StokelyThe following sequence of commands can be used to build a 3091bcf2f1aSMurray Stokely.Dq "-CURRENT snapshot" 310e8423d00SNathan Whitehornin a clean environment, including ports and documentation: 311de26e0adSMurray Stokely.Bd -literal -offset indent 312de26e0adSMurray Stokelycd /usr/src 313de26e0adSMurray Stokelymake buildworld 314de26e0adSMurray Stokelycd release 315e8423d00SNathan Whitehornexport CVSUP_HOST=cvsupN.freebsd.org 316e8423d00SNathan Whitehornsh generate-release.sh head /local3/release 317de26e0adSMurray Stokely.Ed 318e8423d00SNathan Whitehorn.Pp 319e8423d00SNathan WhitehornAfter running these commands, all prepared release files are available in the 320e8423d00SNathan Whitehorn.Pa /local3/release/R 321e8423d00SNathan Whitehorndirectory. 322de26e0adSMurray Stokely.Sh SEE ALSO 323de26e0adSMurray Stokely.Xr cc 1 , 324afb33690SMurray Stokely.Xr cvs 1 , 325de26e0adSMurray Stokely.Xr install 1 , 326de26e0adSMurray Stokely.Xr make 1 , 327594ca9baSTom Rhodes.Xr svn 1 Pq Pa ports/devel/subversion-freebsd , 328de26e0adSMurray Stokely.Xr uname 1 , 329afb33690SMurray Stokely.Xr md 4 , 330de26e0adSMurray Stokely.Xr make.conf 5 , 331de26e0adSMurray Stokely.Xr build 7 , 332de26e0adSMurray Stokely.Xr ports 7 , 333afb33690SMurray Stokely.Xr chroot 8 , 334f5178c4fSMurray Stokely.Xr mtree 8 , 335f5178c4fSMurray Stokely.Xr sysctl 8 336994c71f0SMurray Stokely.Rs 3371bcf2f1aSMurray Stokely.%T "FreeBSD Release Engineering" 338aa4a335bSRuslan Ermilov.%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/releng/ 339994c71f0SMurray Stokely.Re 340994c71f0SMurray Stokely.Rs 3411bcf2f1aSMurray Stokely.%T "FreeBSD Release Engineering of Third Party Packages" 342aa4a335bSRuslan Ermilov.%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/releng-packages/ 343994c71f0SMurray Stokely.Re 344994c71f0SMurray Stokely.Rs 3451bcf2f1aSMurray Stokely.%T "FreeBSD Developers' Handbook" 346aa4a335bSRuslan Ermilov.%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/developers-handbook/ 347994c71f0SMurray Stokely.Re 348de26e0adSMurray Stokely.Sh HISTORY 349de26e0adSMurray Stokely.Fx 350de26e0adSMurray Stokely1.x 3511bcf2f1aSMurray Stokelyused a manual checklist, compiled by 3521bcf2f1aSMurray Stokely.An Rod Grimes , 3531bcf2f1aSMurray Stokelyto produce a release. 354de26e0adSMurray StokelyApart from being incomplete, the list put a lot of specific demands on 355de26e0adSMurray Stokelyavailable file systems and was quite torturous to execute. 356de26e0adSMurray Stokely.Pp 357994c71f0SMurray StokelyAs part of the 358994c71f0SMurray Stokely.Fx 2.0 359994c71f0SMurray Stokelyrelease engineering effort, significant 360de26e0adSMurray Stokelyeffort was spent getting 361de26e0adSMurray Stokely.Pa src/release/Makefile 362de26e0adSMurray Stokelyinto a shape where it could at least automate most of the tediousness 363de26e0adSMurray Stokelyof building a release in a sterile environment. 364de26e0adSMurray Stokely.Pp 365e8423d00SNathan WhitehornFor the 366e8423d00SNathan Whitehorn.Fx 9.0 367e8423d00SNathan Whitehornrelease, 368e8423d00SNathan Whitehorn.Pa src/release/Makefile 369e8423d00SNathan Whitehornwas overhauled and the wrapper script 370e8423d00SNathan Whitehorn.Pa src/release/generate-release.sh 371e8423d00SNathan Whitehornintroduced to support the introduction of a new installer. 372e8423d00SNathan Whitehorn.Pp 373594ca9baSTom RhodesAt near 1000 revisions spread over multiple branches, the 374afb33690SMurray Stokely.Xr cvs 1 375994c71f0SMurray Stokelylog of 376994c71f0SMurray Stokely.Pa src/release/Makefile 377994c71f0SMurray Stokelycontains a vivid historical record of some 378de26e0adSMurray Stokelyof the hardships release engineers go through. 379de26e0adSMurray Stokely.Sh AUTHORS 380de26e0adSMurray Stokely.Pa src/release/Makefile 381afb33690SMurray Stokelywas originally written by 382afb33690SMurray Stokely.An -nosplit 383afb33690SMurray Stokely.An Rod Grimes , 384afb33690SMurray Stokely.An Jordan Hubbard , 385afb33690SMurray Stokelyand 386afb33690SMurray Stokely.An Poul-Henning Kamp . 387994c71f0SMurray StokelyThis manual page was written by 388de26e0adSMurray Stokely.An Murray Stokely Aq murray@FreeBSD.org . 389