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.\" 27*a8c229a5SGlen Barber.Dd October 2, 2014 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 40feacd98eSNathan Whitehorn.Fx 41feacd98eSNathan 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, 45feacd98eSNathan 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 53ebe27856SGlen Barbertrees. 54ebe27856SGlen BarberFor this purpose, a script 55ebe27856SGlen Barber.Pq Pa src/release/release.sh 56e8423d00SNathan Whitehornis provided to automate these checkouts and then execute 57e8423d00SNathan Whitehorn.Dq Li "make release" 58e8423d00SNathan Whitehornin a clean 59e8423d00SNathan Whitehorn.Xr chroot 8 . 60e8423d00SNathan Whitehorn.Pp 61de26e0adSMurray StokelyBefore attempting to build a release, the user is expected to be 62994c71f0SMurray Stokelyfamiliar with the contents of 63de26e0adSMurray Stokely.Xr build 7 , 6447280c4bSRuslan Ermilovand should have experience upgrading systems from source. 65e8423d00SNathan Whitehorn.Pp 66de26e0adSMurray StokelyThe release build process requires that 67de26e0adSMurray Stokely.Pa /usr/obj 68de26e0adSMurray Stokelybe populated with the output of 69d408a341SNathan Whitehorn.Dq Li "make buildworld" 70d408a341SNathan Whitehornand 71d408a341SNathan Whitehorn.Dq Li "make buildkernel" . 72e8423d00SNathan WhitehornThis is necessary to provide the object files for the release or, when 73e8423d00SNathan Whitehornusing 74ebe27856SGlen Barber.Pa release.sh , 75e8423d00SNathan Whitehornso that the object files for a complete system can be installed into a clean 76de26e0adSMurray Stokely.Xr chroot 8 77ebe27856SGlen Barberenvironment. 78ebe27856SGlen Barber.Pp 79ebe27856SGlen BarberIf the target release build is for a different architecture or machine type, 80ebe27856SGlen Barberthe 81ebe27856SGlen Barber.Va TARGET 82ebe27856SGlen Barberand 83ebe27856SGlen Barber.Va TARGET_ARCH 84ebe27856SGlen Barbervariables must be used. 85ebe27856SGlen BarberSee the supported 86ebe27856SGlen Barber.Fa release.conf 87ebe27856SGlen Barbervariables for more information. 88ebe27856SGlen Barber.Pp 89e8423d00SNathan WhitehornThe release procedure on some architectures may also require that the 90994c71f0SMurray Stokely.Xr md 4 91994c71f0SMurray Stokely(memory disk) device driver be present in the kernel 92ebe27856SGlen Barber.Pq either by being compiled in or available as a module . 93de26e0adSMurray Stokely.Pp 94de26e0adSMurray StokelyThis document does not cover source code management, quality 95de26e0adSMurray Stokelyassurance, or other aspects of the release engineering process. 96e8423d00SNathan Whitehorn.Sh CLEAN RELEASE GENERATION 97ebe27856SGlen BarberOfficial releases of 98ebe27856SGlen Barber.Fx 99ebe27856SGlen Barberare produced in a totally clean environment to 100e8423d00SNathan Whitehornensure consistency between the versions of the src, ports, and doc trees 101ebe27856SGlen Barberand to avoid contamination from the host system 102ebe27856SGlen Barber.Po such as local patches, changes 103e8423d00SNathan Whitehornto 104e8423d00SNathan Whitehorn.Xr make.conf 5 , 105ebe27856SGlen Barberetc. 106ebe27856SGlen Barber.Pc . 107ebe27856SGlen BarberThis is accomplished using the wrapper script 108ebe27856SGlen Barber.Pa src/release/release.sh . 109e8423d00SNathan Whitehorn.Pp 110ebe27856SGlen Barber.Ic release.sh 111ebe27856SGlen Barber.Op Fl c Ar release.conf 112e8423d00SNathan Whitehorn.Pp 113ebe27856SGlen Barber.Ic release.sh 114ebe27856SGlen Barberchecks out the 115ebe27856SGlen Barber.Li src/ , 116ebe27856SGlen Barber.Li ports/ , 117ebe27856SGlen Barberand 118ebe27856SGlen Barber.Li doc/ 119ebe27856SGlen Barbertrees to 120ebe27856SGlen Barber.Va CHROOTDIR , 121ebe27856SGlen Barberthen calls 122ebe27856SGlen Barber.Dq Li "make buildworld" 123ebe27856SGlen Barberand 124e8423d00SNathan Whitehorn.Dq Li "make installworld" 125e8423d00SNathan Whitehornto generate a 126e8423d00SNathan Whitehorn.Xr chroot 8 127ebe27856SGlen Barberenvironment. 128ebe27856SGlen BarberNext, 129e8423d00SNathan Whitehorn.Dq Li "make release" 130ebe27856SGlen Barberis run within the 131e8423d00SNathan Whitehorn.Xr chroot 8 132e8423d00SNathan Whitehornenvironment and places the result in 133ebe27856SGlen Barber.Pa $CHROOTDIR/R . 134e8423d00SNathan Whitehorn.Pp 135ebe27856SGlen BarberThe optional 136ebe27856SGlen Barber.Fa release.conf 137ebe27856SGlen Barberconfiguration file supports the following variables: 138ebe27856SGlen Barber.Bl -tag -width Ev 139ebe27856SGlen Barber.It Va CHROOTDIR 140ebe27856SGlen BarberThe directory within which the release will be built. 141e0436612SGlen Barber.It Va CHROOT_MAKEENV 142e0436612SGlen BarberAdditional 143e0436612SGlen Barber.Xr make 1 144e0436612SGlen Barberarguments to pass through, which directly affect the 145e0436612SGlen Barbertuning of the build chroot. 146ebe27856SGlen Barber.It Va SVNROOT 147ebe27856SGlen BarberThe 148ebe27856SGlen Barber.Xr svn 1 149ebe27856SGlen Barberhost used to check out the various trees. 150ebe27856SGlen BarberDefaults to 151ebe27856SGlen Barber.Pa svn://svn.FreeeBSD.org . 152ebe27856SGlen Barber.It Va SRCBRANCH 153ebe27856SGlen BarberThe 154ebe27856SGlen Barber.Li src/ 155ebe27856SGlen Barberbranch to use. 156ebe27856SGlen BarberDefaults to 157bda59883SGlen Barber.Va head/@rHEAD . 158ebe27856SGlen Barber.It Va DOCBRANCH 159ebe27856SGlen BarberThe 160ebe27856SGlen Barber.Li doc/ 161ebe27856SGlen Barberbranch to use. 162ebe27856SGlen BarberDefaults to 163bda59883SGlen Barber.Va head/@rHEAD . 164ebe27856SGlen Barber.It Va PORTBRANCH 165ebe27856SGlen BarberThe 166ebe27856SGlen Barber.Li ports/ 167ebe27856SGlen Barberbranch to use. 168ebe27856SGlen BarberDefaults to 169bda59883SGlen Barber.Va head/@rHEAD . 170ebe27856SGlen Barber.It Va TARGET 171bc1af85cSGlen BarberThe target machine type for cross-building a release. 172ebe27856SGlen Barber.It Va TARGET_ARCH 173bc1af85cSGlen BarberThe target machine architecture for cross-building a release. 174ebe27856SGlen Barber.Pp 175ebe27856SGlen BarberFor the supported list of 176ebe27856SGlen Barber.Va TARGET 177ebe27856SGlen Barberand 178ebe27856SGlen Barber.Va TARGET_ARCH 179ebe27856SGlen Barbercombinations, consult the output of 180ebe27856SGlen Barber.Dq make targets 181ebe27856SGlen Barberas documented in 182ebe27856SGlen Barber.Xr build 7 . 183ebe27856SGlen Barber.It Va KERNEL 184ebe27856SGlen BarberThe target kernel configuration to use. 185ebe27856SGlen BarberDefaults to 186ebe27856SGlen Barber.Va GENERIC . 187ebe27856SGlen BarberMultiple 188ebe27856SGlen Barber.Va KERNEL 189ebe27856SGlen Barberentries may be specified. 190ebe27856SGlen Barber.It Va MAKE_CONF 191ebe27856SGlen BarberThe 192ebe27856SGlen Barber.Xr make.conf 5 193ebe27856SGlen Barberto use for the release build. 194ebe27856SGlen BarberDefaults to 195ebe27856SGlen Barber.Fa /dev/null 196ebe27856SGlen Barberto prevent polluting the release with local system changes. 197ebe27856SGlen Barber.It Va SRC_CONF 198ebe27856SGlen BarberThe 199ebe27856SGlen Barber.Xr src.conf 5 200ebe27856SGlen Barberto use for the release build. 201ebe27856SGlen BarberDefaults to 202ebe27856SGlen Barber.Fa /dev/null 203ebe27856SGlen Barberto prevent polluting the release with local system changes. 204ebe27856SGlen Barber.It Va MAKE_FLAGS 205ebe27856SGlen BarberAdditional flags to pass to 206ebe27856SGlen Barber.Xr make 1 . 207ebe27856SGlen Barber.It Va WORLD_FLAGS 208ebe27856SGlen BarberAdditional flags to pass to 209e8423d00SNathan Whitehorn.Xr make 1 210ebe27856SGlen Barberduring the 211ebe27856SGlen Barber.Dq buildworld 212ebe27856SGlen Barberphase. 213ebe27856SGlen BarberDefaults to setting the number of 214de17cbccSHiroki Sato.Xr make 1 215ebe27856SGlen Barberjobs 216ebe27856SGlen Barber.Pq Ar -j 217bc1af85cSGlen Barberto the number of CPUs available on a SMP-capable system. 218ebe27856SGlen Barber.It Va KERNEL_FLAGS 219ebe27856SGlen BarberAdditional flags to pass to 220ebe27856SGlen Barber.Xr make 1 221ebe27856SGlen Barberduring the 222ebe27856SGlen Barber.Dq buildkernel 223ebe27856SGlen Barberphase. 224ebe27856SGlen BarberDefaults to setting the number of 225ebe27856SGlen Barber.Xr make 1 226ebe27856SGlen Barberjobs 227ebe27856SGlen Barber.Pq Ar -j 228bc1af85cSGlen Barberto half the number of CPUs available on a SMP-capable system. 229ebe27856SGlen Barber.It Va NODOC 230ebe27856SGlen BarberSet to a non-empty value to skip the 231ebe27856SGlen Barber.Li doc/ 232ebe27856SGlen Barbertree checkout. 233ebe27856SGlen BarberWhen set, 234ebe27856SGlen Barber.Va NODOC 235ebe27856SGlen Barberwill prevent the 236ebe27856SGlen Barber.Fa doc.txz 237ebe27856SGlen Barberdistribution package from being created. 238ebe27856SGlen Barber.It Va NOPORTS 239ebe27856SGlen BarberSet to a non-empty value to skip the 240ebe27856SGlen Barber.Li ports/ 241ebe27856SGlen Barbertree checkout. 242ebe27856SGlen BarberWhen set, 243ebe27856SGlen Barber.Va NOPORTS 244ebe27856SGlen Barberwill prevent the 245ebe27856SGlen Barber.Fa ports.txz 246ebe27856SGlen Barberdistribution package from being created. 247ebe27856SGlen BarberSetting this also sets 248ebe27856SGlen Barber.Va NODOC . 249f7f650c7SGlen Barber.It Va WITH_DVD 250f7f650c7SGlen BarberSet to a non-empty value to include the 251f7f650c7SGlen Barber.Cm dvdrom 252f7f650c7SGlen Barbertarget. 253cbc0e08aSGlen Barber.It Va WITH_COMPRESSED_IMAGES 254cbc0e08aSGlen BarberSet to a non-empty value to compress the release images with 25555af5cf1SGlen Barber.Xr xz 1 . 256cbc0e08aSGlen BarberThe original 257cbc0e08aSGlen Barber.Pq uncompressed 258cbc0e08aSGlen Barberimages are not removed. 2599bb84a63SGlen Barber.It Va VCSCMD 2609bb84a63SGlen BarberThe command run to obtain the source trees. 2619bb84a63SGlen BarberDefaults to 2629bb84a63SGlen Barber.Qq Cm svn checkout . 263e0436612SGlen Barber.It Va CHROOTBUILD_SKIP 264e0436612SGlen BarberIf defined, the 265e0436612SGlen Barber.Li buildworld , 266e0436612SGlen Barber.Li installworld , 267e0436612SGlen Barberand 268e0436612SGlen Barber.Li distribution 269e0436612SGlen Barberstages of the 270e0436612SGlen Barber.Xr chroot 8 271e0436612SGlen Barberbuild environment setup are skipped. 272e0436612SGlen BarberThis is intended solely for cases where the 273e0436612SGlen Barber.Xr chroot 8 274e0436612SGlen Barberuserland are provided by alternate means. 2753e64b4c5SGlen Barber.It Va SRC_UPDATE_SKIP 2763e64b4c5SGlen BarberSet to a non-empty value to prevent checkout or update of 2773e64b4c5SGlen Barber.Fa /usr/src 2783e64b4c5SGlen Barberwithin the 2793e64b4c5SGlen Barber.Xr chroot 8 . 2803e64b4c5SGlen BarberThis is intended for use only when 2813e64b4c5SGlen Barber.Fa /usr/src 2823e64b4c5SGlen Barberis expected to exist by alternative means. 2833e64b4c5SGlen Barber.It Va DOC_UPDATE_SKIP 2843e64b4c5SGlen BarberSet to a non-empty value to prevent checkout or update of 2853e64b4c5SGlen Barber.Fa /usr/doc 2863e64b4c5SGlen Barberwithin the 2873e64b4c5SGlen Barber.Xr chroot 8 . 2883e64b4c5SGlen BarberThis is intended for use only when 2893e64b4c5SGlen Barber.Fa /usr/doc 2903e64b4c5SGlen Barberis expected to exist by alternative means. 2913e64b4c5SGlen Barber.It Va PORTS_UPDATE_SKIP 2923e64b4c5SGlen BarberSet to a non-empty value to prevent checkout or update of 2933e64b4c5SGlen Barber.Fa /usr/ports 2943e64b4c5SGlen Barberwithin the 2953e64b4c5SGlen Barber.Xr chroot 8 . 2963e64b4c5SGlen BarberThis is intended for use only when 2973e64b4c5SGlen Barber.Fa /usr/ports 2983e64b4c5SGlen Barberis expected to exist by alternative means. 299e0436612SGlen Barber.El 300e0436612SGlen Barber.Sh EMBEDDED BUILDS 301e0436612SGlen BarberThe following 302e0436612SGlen Barber.Fa release.conf 303e0436612SGlen Barbervariables are relevant only to release builds for embedded systems: 304e0436612SGlen Barber.Bl -tag -width Ev 305e0436612SGlen Barber.It Va EMBEDDEDBUILD 306e0436612SGlen BarberSet to a non-null value to enable functionality for embedded device 307e0436612SGlen Barberrelease builds. 308e0436612SGlen Barber.Pq This option is considered highly experimental. 309e0436612SGlen Barber.Pp 310e0436612SGlen BarberWhen set, 311e0436612SGlen Barber.Va WITH_DVD 312e0436612SGlen Barberis unset, and 313e0436612SGlen Barber.Va NODOC 314e0436612SGlen Barberis defined. 315e0436612SGlen BarberAdditionally, 316e0436612SGlen Barber.Va XDEV 317e0436612SGlen Barberand 318e0436612SGlen Barber.Va XDEV_ARCH 319e0436612SGlen Barbermust also be defined. 320e0436612SGlen BarberWhen the build environment is created, 321e0436612SGlen Barber.Fa release.sh 322e0436612SGlen Barberruns a separate build script located in an architecture-specific 323e0436612SGlen Barberdirectory in 324e0436612SGlen Barber.Pa src/release/${XDEV}/ . 325e0436612SGlen Barber.It Va EMBEDDEDPORTS 326e0436612SGlen BarberSet to the list of any ports that are required for the target device 327e0436612SGlen Barberin the format of 328e0436612SGlen Barber.Fa category/port . 329e0436612SGlen BarberThe 330e0436612SGlen Barber.Fa devel/subversion 331e0436612SGlen Barberport is built by default. 332e0436612SGlen Barber.It Va CROCHETSRC 333e0436612SGlen BarberSet to the source URL for the Crochet build tool. 334e0436612SGlen Barber.It Va CROCHETBRANCH 335e0436612SGlen BarberSet to the subversion branch from 336e0436612SGlen Barber.Va ${CROCHETSRC} 337e0436612SGlen Barberto use. 338e0436612SGlen BarberDefaults to 339e0436612SGlen Barber.Pa trunk . 340e0436612SGlen Barber.It Va UBOOTSRC 341e0436612SGlen BarberSet to the source URL of u-boot, if required. 342e0436612SGlen Barber.It Va UBOOTBRANCH 343e0436612SGlen BarberSet to the subversion branch from 344e0436612SGlen Barber.Va ${UBOOTSRC} 345e0436612SGlen Barberto use. 346e0436612SGlen BarberDefaults to 347e0436612SGlen Barber.Pa trunk . 348e0436612SGlen Barber.It Va UBOOTDIR 349e0436612SGlen BarberSet to the target directory within 350e0436612SGlen Barber.Va ${CHROOTDIR} 351e0436612SGlen Barberto check out 352e0436612SGlen Barber.Va ${UBOOTSRC}/${UBOOTBRANCH} . 353e8423d00SNathan Whitehorn.El 354*a8c229a5SGlen Barber.Sh VIRTUAL MACHINE DISK IMAGES 355*a8c229a5SGlen BarberThe following 356*a8c229a5SGlen Barber.Fa release.conf 357*a8c229a5SGlen Barbervariables are relevant only to virtual machine disk image builds: 358*a8c229a5SGlen Barber.Bl -tag -width Ev 359*a8c229a5SGlen Barber.It Va WITH_VMIMAGES 360*a8c229a5SGlen BarberSet to a non-null value to build virtual machine disk images as part 361*a8c229a5SGlen Barberof the release build. 362*a8c229a5SGlen Barber.Va WITH_VMIMAGES 363*a8c229a5SGlen Barbermay also be specified as an envirionment variable passed to 364*a8c229a5SGlen Barber.Xr make 1 . 365*a8c229a5SGlen Barber.Pp 366*a8c229a5SGlen BarberThe option requires 367*a8c229a5SGlen Barber.Xr mkimg 1 368*a8c229a5SGlen Barberversion 20140927 or later. 369*a8c229a5SGlen Barber.It Va WITH_COMPRESSED_VMIMAGES 370*a8c229a5SGlen BarberSet to a non-null value to compress the virtual machine disk images with 371*a8c229a5SGlen Barber.Xr xz 1 372*a8c229a5SGlen Barberas part of the 373*a8c229a5SGlen Barber.Cm install 374*a8c229a5SGlen Barber.Xr make 1 375*a8c229a5SGlen Barbertarget. 376*a8c229a5SGlen BarberNote that compressing virtual machine disk images may take a very long 377*a8c229a5SGlen Barbertime on some systems. 378*a8c229a5SGlen Barber.It Va VMBASE 379*a8c229a5SGlen BarberSet to change the name of the resulting virtual machine disk image file. 380*a8c229a5SGlen BarberThe default value is 381*a8c229a5SGlen Barber.Va vm . 382*a8c229a5SGlen Barber.It Va VMSIZE 383*a8c229a5SGlen BarberSet to change the size of the virtual machine disk capacity. 384*a8c229a5SGlen BarberThe default value is 385*a8c229a5SGlen Barber.Va 20G . 386*a8c229a5SGlen BarberSee 387*a8c229a5SGlen Barber.Xr truncate 1 388*a8c229a5SGlen Barberfor valid values. 389*a8c229a5SGlen Barber.Pp 390*a8c229a5SGlen BarberVirtual machine disk images are, by default, created as sparse images. 391*a8c229a5SGlen BarberWhen 392*a8c229a5SGlen Barber.Va WITH_COMPRESSED_VMIMAGES 393*a8c229a5SGlen Barberis used, the resulting files compressed with 394*a8c229a5SGlen Barber.Xr xz 1 395*a8c229a5SGlen Barbercompress to roughly the same size, regardless of the specified disk image 396*a8c229a5SGlen Barbersize. 397*a8c229a5SGlen Barber.It Va VMFORMATS 398*a8c229a5SGlen BarberSet to the target virtual disk image format(s) to create. 399*a8c229a5SGlen BarberBy default, the 400*a8c229a5SGlen Barber.Va vhdf , Va vmdk , Va qcow2 , 401*a8c229a5SGlen Barberand 402*a8c229a5SGlen Barber.Va raw 403*a8c229a5SGlen Barberformats are created. 404*a8c229a5SGlen BarberSee 405*a8c229a5SGlen Barber.Xr mkimg 1 406*a8c229a5SGlen Barberfor valid format values 407*a8c229a5SGlen Barber.Pq requires version 20140927 or later . 408*a8c229a5SGlen Barber.El 409e8423d00SNathan Whitehorn.Sh MAKEFILE TARGETS 410de26e0adSMurray StokelyThe release makefile 411994c71f0SMurray Stokely.Pq Pa src/release/Makefile 412de26e0adSMurray Stokelyis fairly abstruse. 413de26e0adSMurray StokelyMost developers will only be concerned with the 414afb33690SMurray Stokely.Cm release 415299a8b95SNathan Whitehornand 416299a8b95SNathan Whitehorn.Cm install 417299a8b95SNathan Whitehorntargets. 418994c71f0SMurray Stokely.\" XXX: Some sort of introduction to this list? All the others have one. 419e8423d00SNathan Whitehorn.Bl -tag -width ".Cm packagesystem" 420afb33690SMurray Stokely.It Cm release 421e8423d00SNathan WhitehornMeta-target to build all release media and distributions applicable to this 422299a8b95SNathan Whitehornplatform. 423299a8b95SNathan Whitehorn.It Cm install 424299a8b95SNathan WhitehornCopy all produced release media to 425299a8b95SNathan Whitehorn.Pa ${DESTDIR} . 426e8423d00SNathan Whitehorn.It Cm cdrom 427de17cbccSHiroki SatoBuilds installation CD-ROM images. 428de17cbccSHiroki SatoThis may require the 429e8423d00SNathan Whitehorn.Xr md 4 430e8423d00SNathan Whitehorn(memory disk) device driver be present in the kernel 431de17cbccSHiroki Sato(either by being compiled in or available as a module). 432de17cbccSHiroki SatoThis target produces files called 433ebe27856SGlen Barber.Pa disc1.iso 434299a8b95SNathan Whitehornand 435299a8b95SNathan Whitehorn.Pa bootonly.iso 436e8423d00SNathan Whitehornas its output. 437d7cfbadbSGlen Barber.It Cm dvdrom 438d7cfbadbSGlen BarberBuilds installation DVD-ROM images. 439d7cfbadbSGlen BarberThis may require the 440d7cfbadbSGlen Barber.Xr md 4 441d7cfbadbSGlen Barber(memory disk) device driver be present in the kernel 442d7cfbadbSGlen Barber(either by being compiled in or available as a module). 443d7cfbadbSGlen BarberThis target produces the 444d7cfbadbSGlen Barber.Pa dvd1.iso 445d7cfbadbSGlen Barberfile as its output. 446e8423d00SNathan Whitehorn.It Cm memstick 447e8423d00SNathan WhitehornBuilds an installation memory stick image named 448ebe27856SGlen Barber.Pa memstick.img . 449de17cbccSHiroki SatoNot applicable on all platforms. 450de17cbccSHiroki SatoRequires that the 451e8423d00SNathan Whitehorn.Xr md 4 452ebe27856SGlen Barber.Pq memory disk 453ebe27856SGlen Barberdevice driver be present in the kernel 454ebe27856SGlen Barber.Pq either by being compiled in or available as a module . 45516fb00c1SGlen Barber.It Cm mini-memstick 45616fb00c1SGlen BarberSimilar to 45716fb00c1SGlen Barber.Cm memstick , 45816fb00c1SGlen Barberwith the exception that the installation distribution sets 45916fb00c1SGlen Barberare not included. 460e8423d00SNathan Whitehorn.It Cm ftp 461e8423d00SNathan WhitehornCreates a directory named 462e8423d00SNathan Whitehorn.Pa ftp 463e8423d00SNathan Whitehorncontaining the distribution files used in network installations 464e8423d00SNathan Whitehornand suitable for upload to an FTP mirror. 465*a8c229a5SGlen Barber.It Cm vm-image 466*a8c229a5SGlen BarberCreates virtual machine disk images in various formats. 467*a8c229a5SGlen BarberThe 468*a8c229a5SGlen Barber.Cm vm-image 469*a8c229a5SGlen Barbertarget requires the 470*a8c229a5SGlen Barber.Va WITH_VMIMAGES 471*a8c229a5SGlen Barber.Xr make 1 472*a8c229a5SGlen Barberenvirionment variable to be set to a non-null value. 473de26e0adSMurray Stokely.El 474de26e0adSMurray Stokely.Pp 475e8423d00SNathan WhitehornMajor subtargets called by targets above: 476e8423d00SNathan Whitehorn.Bl -tag -width ".Cm packagesystem" 477e8423d00SNathan Whitehorn.It Cm packagesystem 478ebe27856SGlen BarberGenerates all the distribution archives 479ebe27856SGlen Barber.Pq base, kernel, ports, doc 480e8423d00SNathan Whitehornapplicable on this platform. 481e8423d00SNathan Whitehorn.It Cm system 482e8423d00SNathan WhitehornBuilds a bootable installation system containing all the distribution files 483e8423d00SNathan Whitehornpackaged by the 484e8423d00SNathan Whitehorn.Cm packagesystem 485e8423d00SNathan Whitehorntarget, and suitable for imaging by the 486d7cfbadbSGlen Barber.Cm cdrom , 487d7cfbadbSGlen Barber.Cm dvdrom 488e8423d00SNathan Whitehornand 489e8423d00SNathan Whitehorn.Cm memstick 490e8423d00SNathan Whitehorntargets. 491e8423d00SNathan Whitehorn.It Cm reldoc 492994c71f0SMurray StokelyBuilds the release documentation. 493994c71f0SMurray StokelyThis includes the release notes, 494ebe27856SGlen Barberhardware guide, and installation instructions. 495ebe27856SGlen BarberOther documentation, such as the Handbook, 496ebe27856SGlen Barberis built during the 497e8423d00SNathan Whitehorn.Cm base.txz 498e8423d00SNathan Whitehorntarget invoked by 499e8423d00SNathan Whitehorn.Cm packagesystem . 500de26e0adSMurray Stokely.El 501de26e0adSMurray Stokely.Sh ENVIRONMENT 502de26e0adSMurray StokelyOptional variables: 503de17cbccSHiroki Sato.Bl -tag -width ".Ev TARGET_ARCH" 504de17cbccSHiroki Sato.It Ev OSRELEASE 505ebe27856SGlen BarberOptional base name for generated media images 506ebe27856SGlen Barber.Pq e.g., FreeBSD-9.0-RC2-amd64 . 507de17cbccSHiroki SatoDefaults to the output of 508de17cbccSHiroki Sato.Ic `uname -s`-`uname -r`-`uname -p` 509de17cbccSHiroki Satowithin the chroot. 510de17cbccSHiroki Sato.It Ev WORLDDIR 511ebe27856SGlen BarberLocation of a directory containing the src tree. 512ebe27856SGlen BarberBy default, the directory 513e8423d00SNathan Whitehornabove the one containing the makefile 514e8423d00SNathan Whitehorn.Pq Pa src . 515de17cbccSHiroki Sato.It Ev PORTSDIR 516ebe27856SGlen BarberLocation of a directory containing the ports tree. 517ebe27856SGlen BarberBy default, 518e8423d00SNathan Whitehorn.Pa /usr/ports . 519e8423d00SNathan WhitehornIf it is unset or cannot be found, ports will not be included in the release. 520de17cbccSHiroki Sato.It Ev DOCDIR 521ebe27856SGlen BarberLocation of a directory containing the doc tree. 522ebe27856SGlen BarberBy default, 523e8423d00SNathan Whitehorn.Pa /usr/doc . 524e8423d00SNathan WhitehornIf it is unset or cannot be found, most documentation will not be included in 525e8423d00SNathan Whitehornthe release; see 526e8423d00SNathan Whitehorn.Ev NODOC 527e8423d00SNathan Whitehornbelow. 528de17cbccSHiroki Sato.It Ev NOPORTS 529e8423d00SNathan WhitehornIf defined, the Ports Collection will be omitted from the release. 530de17cbccSHiroki Sato.It Ev NOSRC 531e8423d00SNathan WhitehornIf set, do not include system source code in the release. 532de17cbccSHiroki Sato.It Ev NODOC 5330cd4fb92SGlen BarberIf defined, the XML-based documentation from the 534de26e0adSMurray Stokely.Fx 535eee69fccSMurray StokelyDocumentation Project will not be built. 536eee69fccSMurray StokelyHowever, the 537eee69fccSMurray Stokely.Dq doc 538eee69fccSMurray Stokelydistribution will still be created with the minimal documentation set 539eee69fccSMurray Stokelyprovided in 540eee69fccSMurray Stokely.Pa src/share/doc . 541de17cbccSHiroki Sato.It Ev TARGET 54225923b97SRuslan ErmilovThe target hardware platform. 54325923b97SRuslan ErmilovThis is analogous to the 54425923b97SRuslan Ermilov.Dq Nm uname Fl m 54525923b97SRuslan Ermilovoutput. 54625923b97SRuslan ErmilovThis is necessary to cross-build some target architectures. 54725923b97SRuslan ErmilovFor example, cross-building for PC98 machines requires 548de17cbccSHiroki Sato.Ev TARGET_ARCH Ns = Ns Li i386 54925923b97SRuslan Ermilovand 550de17cbccSHiroki Sato.Ev TARGET Ns = Ns Li pc98 . 551e8423d00SNathan WhitehornIf not set, 552de17cbccSHiroki Sato.Ev TARGET 553e8423d00SNathan Whitehorndefaults to the current hardware platform. 554de17cbccSHiroki Sato.It Ev TARGET_ARCH 555e8423d00SNathan WhitehornThe target machine processor architecture. 556e8423d00SNathan WhitehornThis is analogous to the 557e8423d00SNathan Whitehorn.Dq Nm uname Fl p 558e8423d00SNathan Whitehornoutput. 559e8423d00SNathan WhitehornSet this to cross-build for a different architecture. 560e8423d00SNathan WhitehornIf not set, 561de17cbccSHiroki Sato.Ev TARGET_ARCH 562e8423d00SNathan Whitehorndefaults to the current machine architecture, unless 563de17cbccSHiroki Sato.Ev TARGET 564e8423d00SNathan Whitehornis also set, in which case it defaults to the appropriate 565e8423d00SNathan Whitehornvalue for that platform. 566e8423d00SNathan WhitehornTypically, one only needs to set 567de17cbccSHiroki Sato.Ev TARGET . 568de26e0adSMurray Stokely.El 569de26e0adSMurray Stokely.Sh FILES 57082f39c10SGlen Barber.Bl -tag -compact -width Pa 571de26e0adSMurray Stokely.It Pa /usr/doc/Makefile 572de26e0adSMurray Stokely.It Pa /usr/doc/share/mk/doc.project.mk 573de26e0adSMurray Stokely.It Pa /usr/ports/Mk/bsd.port.mk 574de26e0adSMurray Stokely.It Pa /usr/ports/Mk/bsd.sites.mk 575de26e0adSMurray Stokely.It Pa /usr/share/examples/etc/make.conf 576de26e0adSMurray Stokely.It Pa /usr/src/Makefile 577de26e0adSMurray Stokely.It Pa /usr/src/Makefile.inc1 578de26e0adSMurray Stokely.It Pa /usr/src/release/Makefile 579ebe27856SGlen Barber.It Pa /usr/src/release/release.sh 580ebe27856SGlen Barber.It Pa /usr/src/release/release.conf.sample 581de26e0adSMurray Stokely.El 582de26e0adSMurray Stokely.Sh EXAMPLES 583e8423d00SNathan WhitehornThe following sequence of commands can be used to build a 584e8423d00SNathan Whitehorn.Dq "-CURRENT snapshot": 585de26e0adSMurray Stokely.Bd -literal -offset indent 586de26e0adSMurray Stokelycd /usr 587e8423d00SNathan Whitehornsvn co svn://svn.freebsd.org/base/head src 588de26e0adSMurray Stokelycd src 589d408a341SNathan Whitehornmake buildworld buildkernel 590de26e0adSMurray Stokelycd release 5918ef63d0dSNathan Whitehornmake release 5928ef63d0dSNathan Whitehornmake install DESTDIR=/var/freebsd-snapshot 593de26e0adSMurray Stokely.Ed 594de26e0adSMurray Stokely.Pp 595299a8b95SNathan WhitehornAfter running these commands, all produced distribution files (tarballs 596299a8b95SNathan Whitehornfor FTP, CD-ROM images, etc.) are available in the 597299a8b95SNathan Whitehorn.Pa /var/freebsd-snapshot 598de26e0adSMurray Stokelydirectory. 599de26e0adSMurray Stokely.Pp 600994c71f0SMurray StokelyThe following sequence of commands can be used to build a 6011bcf2f1aSMurray Stokely.Dq "-CURRENT snapshot" 602e8423d00SNathan Whitehornin a clean environment, including ports and documentation: 603de26e0adSMurray Stokely.Bd -literal -offset indent 6045af5af75SGleb Smirnoffcd /usr/src/release 605ebe27856SGlen Barbersh release.sh 606ebe27856SGlen Barber.Ed 607ebe27856SGlen Barber.Pp 608ebe27856SGlen BarberOptionally, a configuration file can be used customize the release build, 609ebe27856SGlen Barbersuch as the subversion revision to use, the branch of the subversion tree for 610ebe27856SGlen Barber.Li src/ , 611ebe27856SGlen Barber.Li ports/ , 612ebe27856SGlen Barberand 613ebe27856SGlen Barber.Li doc/ . 614ebe27856SGlen Barber.Bd -literal -offset indent 615ebe27856SGlen Barbercd /usr/src/release 616ebe27856SGlen Barbersh release.sh -c $HOME/release.conf 617de26e0adSMurray Stokely.Ed 618e8423d00SNathan Whitehorn.Pp 619e8423d00SNathan WhitehornAfter running these commands, all prepared release files are available in the 620ebe27856SGlen Barber.Pa /scratch 621e8423d00SNathan Whitehorndirectory. 622ebe27856SGlen BarberThe target directory can be changed by specifying the 623ebe27856SGlen Barber.Va CHROOTDIR 624ebe27856SGlen Barbervariable in 625ebe27856SGlen Barber.Li release.conf . 626de26e0adSMurray Stokely.Sh SEE ALSO 627de26e0adSMurray Stokely.Xr cc 1 , 628de26e0adSMurray Stokely.Xr install 1 , 629de26e0adSMurray Stokely.Xr make 1 , 630af285c09SGlen Barber.Xr svn 1 Pq Pa ports/devel/subversion , 631de26e0adSMurray Stokely.Xr uname 1 , 632afb33690SMurray Stokely.Xr md 4 , 633de26e0adSMurray Stokely.Xr make.conf 5 , 634de26e0adSMurray Stokely.Xr build 7 , 635de26e0adSMurray Stokely.Xr ports 7 , 636afb33690SMurray Stokely.Xr chroot 8 , 637f5178c4fSMurray Stokely.Xr mtree 8 , 638f5178c4fSMurray Stokely.Xr sysctl 8 639994c71f0SMurray Stokely.Rs 6401bcf2f1aSMurray Stokely.%T "FreeBSD Release Engineering" 641aa4a335bSRuslan Ermilov.%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/releng/ 642994c71f0SMurray Stokely.Re 643994c71f0SMurray Stokely.Rs 6441bcf2f1aSMurray Stokely.%T "FreeBSD Release Engineering of Third Party Packages" 645aa4a335bSRuslan Ermilov.%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/releng-packages/ 646994c71f0SMurray Stokely.Re 647994c71f0SMurray Stokely.Rs 6481bcf2f1aSMurray Stokely.%T "FreeBSD Developers' Handbook" 649aa4a335bSRuslan Ermilov.%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/developers-handbook/ 650994c71f0SMurray Stokely.Re 651de26e0adSMurray Stokely.Sh HISTORY 652de26e0adSMurray Stokely.Fx 653de26e0adSMurray Stokely1.x 6541bcf2f1aSMurray Stokelyused a manual checklist, compiled by 6551bcf2f1aSMurray Stokely.An Rod Grimes , 6561bcf2f1aSMurray Stokelyto produce a release. 657de26e0adSMurray StokelyApart from being incomplete, the list put a lot of specific demands on 658de26e0adSMurray Stokelyavailable file systems and was quite torturous to execute. 659de26e0adSMurray Stokely.Pp 660994c71f0SMurray StokelyAs part of the 661994c71f0SMurray Stokely.Fx 2.0 662994c71f0SMurray Stokelyrelease engineering effort, significant 663de26e0adSMurray Stokelyeffort was spent getting 664de26e0adSMurray Stokely.Pa src/release/Makefile 665de26e0adSMurray Stokelyinto a shape where it could at least automate most of the tediousness 666de26e0adSMurray Stokelyof building a release in a sterile environment. 667de26e0adSMurray Stokely.Pp 668e8423d00SNathan WhitehornFor the 669e8423d00SNathan Whitehorn.Fx 9.0 670e8423d00SNathan Whitehornrelease, 671e8423d00SNathan Whitehorn.Pa src/release/Makefile 672e8423d00SNathan Whitehornwas overhauled and the wrapper script 673e8423d00SNathan Whitehorn.Pa src/release/generate-release.sh 674e8423d00SNathan Whitehornintroduced to support the introduction of a new installer. 675e8423d00SNathan Whitehorn.Pp 676ebe27856SGlen BarberFor the 677ebe27856SGlen Barber.Fx 9.2 678ebe27856SGlen Barberrelease, 679ebe27856SGlen Barber.Pa src/release/release.sh 680ebe27856SGlen Barberwas introduced to support per-build configuration files. 681ebe27856SGlen Barber.Pa src/release/release.sh 682ebe27856SGlen Barberis heavily based on the 683ebe27856SGlen Barber.Pa src/release/generate-release.sh 684ebe27856SGlen Barberscript. 685ebe27856SGlen Barber.Pp 686594ca9baSTom RhodesAt near 1000 revisions spread over multiple branches, the 6870cd4fb92SGlen Barber.Xr svn 1 688994c71f0SMurray Stokelylog of 689994c71f0SMurray Stokely.Pa src/release/Makefile 690994c71f0SMurray Stokelycontains a vivid historical record of some 691de26e0adSMurray Stokelyof the hardships release engineers go through. 692de26e0adSMurray Stokely.Sh AUTHORS 693de26e0adSMurray Stokely.Pa src/release/Makefile 694afb33690SMurray Stokelywas originally written by 695afb33690SMurray Stokely.An -nosplit 696afb33690SMurray Stokely.An Rod Grimes , 697afb33690SMurray Stokely.An Jordan Hubbard , 698afb33690SMurray Stokelyand 699afb33690SMurray Stokely.An Poul-Henning Kamp . 700ebe27856SGlen Barber.Pp 701ebe27856SGlen BarberThis manual page was originally written by 702a63d6c94SBaptiste Daroussin.An Murray Stokely Aq Mt murray@FreeBSD.org . 703ebe27856SGlen Barber.Pp 704ebe27856SGlen BarberIt was updated by 705a63d6c94SBaptiste Daroussin.An Nathan Whitehorn Aq Mt nwhitehorn@FreeBSD.org 706ebe27856SGlen Barberto include the 707ebe27856SGlen Barber.Fa generate-release.sh 708ebe27856SGlen Barberscript used for the 709ebe27856SGlen Barber.Fx 9.0 710ebe27856SGlen Barberrelease cycle. 711ebe27856SGlen Barber.Pp 712ebe27856SGlen BarberIt was later updated by 713a63d6c94SBaptiste Daroussin.An Glen Barber Aq Mt gjb@FreeBSD.org 714ebe27856SGlen Barberto include the 715ebe27856SGlen Barber.Fa release.sh 716ebe27856SGlen Barberscript used for the 717ebe27856SGlen Barber.Fx 9.2 718ebe27856SGlen Barberrelease cycle. 719