]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/man/man7/release.7
MFC r326315, r326330, r326331, r326412:
[FreeBSD/stable/10.git] / share / man / man7 / release.7
1 .\" Copyright (c) 2002 Murray Stokely <murray@FreeBSD.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd November 28, 2017
28 .Dt RELEASE 7
29 .Os
30 .Sh NAME
31 .Nm release
32 .Nd "release building infrastructure"
33 .Sh DESCRIPTION
34 .Fx
35 provides a complete build environment suitable for users to make
36 full releases of the
37 .Fx
38 operating system.
39 All of the tools necessary to build a release are available from the
40 .Fx
41 source code repository in
42 .Pa src/release .
43 A complete release can actually be built with only a single command,
44 including the creation of ISO images suitable for burning to CD-ROM,
45 memory stick images, and an FTP install directory.
46 This command is aptly named
47 .Dq Li "make release" .
48 .Pp
49 For some users, it may be desirable to provide an absolutely clean
50 build environment, with no local modifications to the source tree or to
51 .Xr make.conf 5 ,
52 and with clean checkouts of specific versions of the doc, src, and ports
53 trees.
54 For this purpose, a script
55 .Pq Pa src/release/release.sh
56 is provided to automate these checkouts and then execute
57 .Dq Li "make release"
58 in a clean
59 .Xr chroot 8 .
60 .Pp
61 Before attempting to build a release, the user is expected to be
62 familiar with the contents of
63 .Xr build 7 ,
64 and should have experience upgrading systems from source.
65 .Pp
66 The release build process requires that
67 .Pa /usr/obj
68 be populated with the output of
69 .Dq Li "make buildworld"
70 and
71 .Dq Li "make buildkernel" .
72 This is necessary to provide the object files for the release or, when
73 using
74 .Pa release.sh ,
75 so that the object files for a complete system can be installed into a clean
76 .Xr chroot 8
77 environment.
78 .Pp
79 If the target release build is for a different architecture or machine type,
80 the
81 .Va TARGET
82 and
83 .Va TARGET_ARCH
84 variables must be used.
85 See the supported
86 .Fa release.conf
87 variables for more information.
88 .Pp
89 The release procedure on some architectures may also require that the
90 .Xr md 4
91 (memory disk) device driver be present in the kernel
92 .Pq either by being compiled in or available as a module .
93 .Pp
94 This document does not cover source code management, quality
95 assurance, or other aspects of the release engineering process.
96 .Sh CLEAN RELEASE GENERATION
97 Official releases of
98 .Fx
99 are produced in a totally clean environment to
100 ensure consistency between the versions of the src, ports, and doc trees
101 and to avoid contamination from the host system
102 .Po such as local patches, changes
103 to
104 .Xr make.conf 5 ,
105 etc.
106 .Pc .
107 This is accomplished using the wrapper script
108 .Pa src/release/release.sh .
109 .Pp
110 .Ic release.sh
111 .Op Fl c Ar release.conf
112 .Pp
113 .Ic release.sh
114 checks out the
115 .Li src/ ,
116 .Li ports/ ,
117 and
118 .Li doc/
119 trees to
120 .Va CHROOTDIR ,
121 then calls
122 .Dq Li "make buildworld"
123 and
124 .Dq Li "make installworld"
125 to generate a
126 .Xr chroot 8
127 environment.
128 Next,
129 .Dq Li "make release"
130 is run within the
131 .Xr chroot 8
132 environment and places the result in
133 .Pa $CHROOTDIR/R .
134 .Pp
135 The optional
136 .Fa release.conf
137 configuration file supports the following variables:
138 .Bl -tag -width Ev
139 .It Va CHROOTDIR
140 The directory within which the release will be built.
141 .It Va CHROOT_MAKEENV
142 Additional
143 .Xr make 1
144 arguments to pass through, which directly affect the
145 tuning of the build chroot.
146 .It Va SVNROOT
147 The
148 .Xr svn 1
149 host used to check out the various trees.
150 Defaults to
151 .Pa svn://svn.FreeeBSD.org .
152 .It Va SRCBRANCH
153 The
154 .Li src/
155 branch to use.
156 Defaults to
157 .Va head/@rHEAD .
158 .It Va DOCBRANCH
159 The
160 .Li doc/
161 branch to use.
162 Defaults to
163 .Va head/@rHEAD .
164 .It Va PORTBRANCH
165 The
166 .Li ports/
167 branch to use.
168 Defaults to
169 .Va head/@rHEAD .
170 .It Va TARGET
171 The target machine type for cross-building a release.
172 .It Va TARGET_ARCH
173 The target machine architecture for cross-building a release.
174 .Pp
175 For the supported list of
176 .Va TARGET
177 and
178 .Va TARGET_ARCH
179 combinations, consult the output of
180 .Dq make targets
181 as documented in
182 .Xr build 7 .
183 .It Va KERNEL
184 The target kernel configuration to use.
185 Defaults to
186 .Va GENERIC .
187 Multiple
188 .Va KERNEL
189 entries may be specified.
190 .It Va MAKE_CONF
191 The
192 .Xr make.conf 5
193 to use for the release build.
194 Defaults to
195 .Fa /dev/null
196 to prevent polluting the release with local system changes.
197 .It Va SRC_CONF
198 The
199 .Xr src.conf 5
200 to use for the release build.
201 Defaults to
202 .Fa /dev/null
203 to prevent polluting the release with local system changes.
204 .It Va MAKE_FLAGS
205 Additional flags to pass to
206 .Xr make 1 .
207 .It Va WORLD_FLAGS
208 Additional flags to pass to
209 .Xr make 1
210 during the
211 .Dq buildworld
212 phase.
213 Defaults to setting the number of
214 .Xr make 1
215 jobs
216 .Pq Ar -j
217 to the number of CPUs available on a SMP-capable system.
218 .It Va KERNEL_FLAGS
219 Additional flags to pass to
220 .Xr make 1
221 during the
222 .Dq buildkernel
223 phase.
224 Defaults to setting the number of
225 .Xr make 1
226 jobs
227 .Pq Ar -j
228 to half the number of CPUs available on a SMP-capable system.
229 .It Va NODOC
230 Set to a non-empty value to skip the
231 .Li doc/
232 tree checkout.
233 When set,
234 .Va NODOC
235 will prevent the
236 .Fa doc.txz
237 distribution package from being created.
238 .It Va NOPORTS
239 Set to a non-empty value to skip the
240 .Li ports/
241 tree checkout.
242 When set,
243 .Va NOPORTS
244 will prevent the
245 .Fa ports.txz
246 distribution package from being created.
247 Setting this also sets
248 .Va NODOC .
249 .It Va WITH_DVD
250 Set to a non-empty value to include the
251 .Cm dvdrom
252 target.
253 .It Va WITH_COMPRESSED_IMAGES
254 Set to a non-empty value to compress the release images with
255 .Xr xz 1 .
256 The original
257 .Pq uncompressed
258 images are not removed.
259 .It Va VCSCMD
260 The command run to obtain the source trees.
261 Defaults to
262 .Qq Cm svn checkout .
263 .It Va CHROOTBUILD_SKIP
264 If defined, the
265 .Li buildworld ,
266 .Li installworld ,
267 and
268 .Li distribution
269 stages of the
270 .Xr chroot 8
271 build environment setup are skipped.
272 This is intended solely for cases where the
273 .Xr chroot 8
274 userland are provided by alternate means.
275 .It Va SRC_UPDATE_SKIP
276 Set to a non-empty value to prevent checkout or update of
277 .Fa /usr/src
278 within the
279 .Xr chroot 8 .
280 This is intended for use only when
281 .Fa /usr/src
282 is expected to exist by alternative means.
283 .It Va DOC_UPDATE_SKIP
284 Set to a non-empty value to prevent checkout or update of
285 .Fa /usr/doc
286 within the
287 .Xr chroot 8 .
288 This is intended for use only when
289 .Fa /usr/doc
290 is expected to exist by alternative means.
291 .It Va PORTS_UPDATE_SKIP
292 Set to a non-empty value to prevent checkout or update of
293 .Fa /usr/ports
294 within the
295 .Xr chroot 8 .
296 This is intended for use only when
297 .Fa /usr/ports
298 is expected to exist by alternative means.
299 .El
300 .Sh EMBEDDED BUILDS
301 The following
302 .Fa release.conf
303 variables are relevant only to release builds for embedded systems:
304 .Bl -tag -width Ev
305 .It Va EMBEDDEDBUILD
306 Set to a non-null value to enable functionality for embedded device
307 release builds.
308 .Pp
309 When set,
310 .Va WITH_DVD
311 is unset, and
312 .Va NODOC
313 is defined.
314 Additionally,
315 .Va EMBEDDED_TARGET
316 and
317 .Va EMBEDDED_TARGET_ARCH
318 must also be defined.
319 When the build environment is created,
320 .Fa release.sh
321 runs a separate build script located in an architecture-specific
322 directory in
323 .Pa src/release/${EMBEDDED_TARGET}/ .
324 .It Va EMBEDDEDPORTS
325 Set to the list of any ports that are required for the target device
326 in the format of
327 .Fa category/port .
328 The
329 .Fa devel/subversion
330 port is built by default.
331 .It Va EMBEDDED_TARGET
332 When set, its value is passed to
333 .Xr make 1
334 to set the
335 .Va TARGET
336 .Pq value of Cm uname Fl m
337 to cross build the target userland.
338 .It Va EMBEDDED_TARGET_ARCH
339 When set, its value is passed to
340 .Xr make 1
341 to set the
342 .Va TARGET_ARCH
343 .Pq value of Cm uname Fl p
344 to cross build the target userland.
345 .El
346 .Sh VIRTUAL MACHINE DISK IMAGES
347 The following
348 .Fa release.conf
349 variables are relevant only to virtual machine disk image builds:
350 .Bl -tag -width Ev
351 .It Va WITH_VMIMAGES
352 Set to a non-null value to build virtual machine disk images as part
353 of the release build.
354 .Va WITH_VMIMAGES
355 may also be specified as an envirionment variable passed to
356 .Xr make 1 .
357 .Pp
358 The option requires
359 .Xr mkimg 1
360 version 20140927 or later.
361 .It Va WITH_COMPRESSED_VMIMAGES
362 Set to a non-null value to compress the virtual machine disk images with
363 .Xr xz 1
364 as part of the
365 .Cm install
366 .Xr make 1
367 target.
368 Note that compressing virtual machine disk images may take a very long
369 time on some systems.
370 .It Va VMBASE
371 Set to change the name of the resulting virtual machine disk image file.
372 The default value is
373 .Va vm .
374 .It Va VMSIZE
375 Set to change the size of the virtual machine disk capacity.
376 The default value is
377 .Va 20G .
378 See
379 .Xr truncate 1
380 for valid values.
381 .Pp
382 Virtual machine disk images are, by default, created as sparse images.
383 When
384 .Va WITH_COMPRESSED_VMIMAGES
385 is used, the resulting files compressed with
386 .Xr xz 1
387 compress to roughly the same size, regardless of the specified disk image
388 size.
389 .It Va VMFORMATS
390 Set to the target virtual disk image format(s) to create.
391 By default, the
392 .Va vhdf , Va vmdk , Va qcow2 ,
393 and
394 .Va raw
395 formats are created.
396 See
397 .Xr mkimg 1
398 for valid format values
399 .Pq requires version 20140927 or later .
400 .El
401 .Pp
402 For a list of supported
403 .Va VMFORMATS
404 values
405 .Pq including cloud hosting provider formats
406 along with a brief description, run:
407 .Bd -literal -offset indent
408 cd /usr/src
409 make -C release list-vmtargets
410 .Ed
411 .Sh CLOUD HOSTING MACHINE IMAGES
412 The
413 .Fx
414 release build tools support building virtual machine images for various
415 cloud hosting providers, each with their own specific configuration to
416 include support for each hosting provider by default.
417 .Pp
418 The following
419 .Xr make 1
420 environment variables are supported:
421 .Pp
422 .Bl -tag -width Ev
423 .It Va CLOUDWARE
424 Set to a list of one or more cloud hosting providers, enclosed in quotes.
425 Requires
426 .Va WITH_CLOUDWARE
427 to also be set.
428 .It Va WITH_CLOUDWARE
429 Set to a non-empty value to enable building virtual machine images
430 for various cloud hosting providers.
431 Requires
432 .Va CLOUDWARE
433 to also be set.
434 .El
435 .Pp
436 Additionally, the
437 .Va CLOUDWARE
438 and
439 .Va WITH_CLOUDWARE
440 variables can be added to
441 .Pa release.conf ,
442 and used in conjunction with
443 .Pa release.sh .
444 .Pp
445 For a list of supported
446 .Va CLOUDWARE
447 values, run:
448 .Bd -literal -offset indent
449 cd /usr/src
450 make -C release list-cloudware
451 .Ed
452 .Sh MAKEFILE TARGETS
453 The release makefile
454 .Pq Pa src/release/Makefile
455 is fairly abstruse.
456 Most developers will only be concerned with the
457 .Cm release
458 and
459 .Cm install
460 targets.
461 .\" XXX: Some sort of introduction to this list?  All the others have one.
462 .Bl -tag -width ".Cm packagesystem"
463 .It Cm release
464 Meta-target to build all release media and distributions applicable to this
465 platform.
466 .It Cm install
467 Copy all produced release media to
468 .Pa ${DESTDIR} .
469 .It Cm cdrom
470 Builds installation CD-ROM images.
471 This may require the
472 .Xr md 4
473 (memory disk) device driver be present in the kernel
474 (either by being compiled in or available as a module).
475 This target produces files called
476 .Pa disc1.iso
477 and
478 .Pa bootonly.iso
479 as its output.
480 .It Cm dvdrom
481 Builds installation DVD-ROM images.
482 This may require the
483 .Xr md 4
484 (memory disk) device driver be present in the kernel
485 (either by being compiled in or available as a module).
486 This target produces the
487 .Pa dvd1.iso
488 file as its output.
489 .It Cm memstick
490 Builds an installation memory stick image named
491 .Pa memstick.img .
492 Not applicable on all platforms.
493 Requires that the
494 .Xr md 4
495 .Pq memory disk
496 device driver be present in the kernel
497 .Pq either by being compiled in or available as a module .
498 .It Cm mini-memstick
499 Similar to
500 .Cm memstick ,
501 with the exception that the installation distribution sets
502 are not included.
503 .It Cm ftp
504 Creates a directory named
505 .Pa ftp
506 containing the distribution files used in network installations
507 and suitable for upload to an FTP mirror.
508 .It Cm vm-image
509 Creates virtual machine disk images in various formats.
510 The
511 .Cm vm-image
512 target requires the
513 .Va WITH_VMIMAGES
514 .Xr make 1
515 envirionment variable to be set to a non-null value.
516 .It Cm vm-cloudware
517 Builds
518 .Fx
519 virtual machine images for various cloud hosting providers.
520 See
521 .Qq CLOUD HOSTING MACHINE IMAGES
522 for implementation details.
523 .It Cm list-cloudware
524 Displays the list of valid
525 .Va CLOUDWARE
526 values.
527 .It Cm list-vmtargets
528 Displays the list of valid
529 .Va VMFORMAT
530 and
531 .Va CLOUDWARE
532 values.
533 .El
534 .Pp
535 Major subtargets called by targets above:
536 .Bl -tag -width ".Cm packagesystem"
537 .It Cm packagesystem
538 Generates all the distribution archives
539 .Pq base, kernel, ports, doc
540 applicable on this platform.
541 .It Cm disc1
542 Builds a bootable installation system containing all the distribution files
543 packaged by the
544 .Cm packagesystem
545 target, and suitable for imaging by the
546 .Cm cdrom ,
547 .Cm dvdrom
548 and
549 .Cm memstick
550 targets.
551 .It Cm reldoc
552 Builds the release documentation.
553 This includes the release notes,
554 hardware guide, and installation instructions.
555 Other documentation, such as the Handbook,
556 is built during the
557 .Cm base.txz
558 target invoked by
559 .Cm packagesystem .
560 .El
561 .Sh ENVIRONMENT
562 Optional variables:
563 .Bl -tag -width ".Ev TARGET_ARCH"
564 .It Ev OSRELEASE
565 Optional base name for generated media images
566 .Pq e.g., FreeBSD-9.0-RC2-amd64 .
567 Defaults to the output of
568 .Ic `uname -s`-`uname -r`-`uname -p`
569 within the chroot.
570 .It Ev WORLDDIR
571 Location of a directory containing the src tree.
572 By default, the directory
573 above the one containing the makefile
574 .Pq Pa src .
575 .It Ev PORTSDIR
576 Location of a directory containing the ports tree.
577 By default,
578 .Pa /usr/ports .
579 If it is unset or cannot be found, ports will not be included in the release.
580 .It Ev DOCDIR
581 Location of a directory containing the doc tree.
582 By default,
583 .Pa /usr/doc .
584 If it is unset or cannot be found, most documentation will not be included in
585 the release; see
586 .Ev NODOC
587 below.
588 .It Ev NOPORTS
589 If defined, the Ports Collection will be omitted from the release.
590 .It Ev NOSRC
591 If set, do not include system source code in the release.
592 .It Ev NODOC
593 If defined, the XML-based documentation from the
594 .Fx
595 Documentation Project will not be built.
596 However, the
597 .Dq doc
598 distribution will still be created with the minimal documentation set
599 provided in
600 .Pa src/share/doc .
601 .It Ev TARGET
602 The target hardware platform.
603 This is analogous to the
604 .Dq Nm uname Fl m
605 output.
606 This is necessary to cross-build some target architectures.
607 For example, cross-building for PC98 machines requires
608 .Ev TARGET_ARCH Ns = Ns Li i386
609 and
610 .Ev TARGET Ns = Ns Li pc98 .
611 If not set,
612 .Ev TARGET
613 defaults to the current hardware platform.
614 .It Ev TARGET_ARCH
615 The target machine processor architecture.
616 This is analogous to the
617 .Dq Nm uname Fl p
618 output.
619 Set this to cross-build for a different architecture.
620 If not set,
621 .Ev TARGET_ARCH
622 defaults to the current machine architecture, unless
623 .Ev TARGET
624 is also set, in which case it defaults to the appropriate
625 value for that platform.
626 Typically, one only needs to set
627 .Ev TARGET .
628 .El
629 .Sh FILES
630 .Bl -tag -compact -width Pa
631 .It Pa /usr/doc/Makefile
632 .It Pa /usr/doc/share/mk/doc.project.mk
633 .It Pa /usr/ports/Mk/bsd.port.mk
634 .It Pa /usr/ports/Mk/bsd.sites.mk
635 .It Pa /usr/share/examples/etc/make.conf
636 .It Pa /usr/src/Makefile
637 .It Pa /usr/src/Makefile.inc1
638 .It Pa /usr/src/release/Makefile
639 .It Pa /usr/src/release/Makefile.vm
640 .It Pa /usr/src/release/release.sh
641 .It Pa /usr/src/release/release.conf.sample
642 .It Pa /usr/src/release/tools/*.conf
643 .It Pa /usr/src/release/tools/vmimage.subr
644 .El
645 .Sh EXAMPLES
646 The following sequence of commands can be used to build a
647 .Dq "-CURRENT snapshot":
648 .Bd -literal -offset indent
649 cd /usr
650 svn co svn://svn.freebsd.org/base/head src
651 cd src
652 make buildworld buildkernel
653 cd release
654 make release
655 make install DESTDIR=/var/freebsd-snapshot
656 .Ed
657 .Pp
658 After running these commands, all produced distribution files (tarballs
659 for FTP, CD-ROM images, etc.) are available in the
660 .Pa /var/freebsd-snapshot
661 directory.
662 .Pp
663 The following sequence of commands can be used to build a
664 .Dq "-CURRENT snapshot"
665 in a clean environment, including ports and documentation:
666 .Bd -literal -offset indent
667 cd /usr/src/release
668 sh release.sh
669 .Ed
670 .Pp
671 Optionally, a configuration file can be used customize the release build,
672 such as the subversion revision to use, the branch of the subversion tree for
673 .Li src/ ,
674 .Li ports/ ,
675 and
676 .Li doc/ .
677 .Bd -literal -offset indent
678 cd /usr/src/release
679 sh release.sh -c $HOME/release.conf
680 .Ed
681 .Pp
682 After running these commands, all prepared release files are available in the
683 .Pa /scratch
684 directory.
685 The target directory can be changed by specifying the
686 .Va CHROOTDIR
687 variable in
688 .Li release.conf .
689 .Sh SEE ALSO
690 .Xr cc 1 ,
691 .Xr install 1 ,
692 .Xr make 1 ,
693 .Xr svn 1 Pq Pa ports/devel/subversion ,
694 .Xr uname 1 ,
695 .Xr md 4 ,
696 .Xr make.conf 5 ,
697 .Xr build 7 ,
698 .Xr ports 7 ,
699 .Xr chroot 8 ,
700 .Xr mtree 8 ,
701 .Xr sysctl 8
702 .Rs
703 .%T "FreeBSD Release Engineering"
704 .%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/releng/
705 .Re
706 .Rs
707 .%T "FreeBSD Release Engineering of Third Party Packages"
708 .%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/releng-packages/
709 .Re
710 .Rs
711 .%T "FreeBSD Developers' Handbook"
712 .%U http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/developers-handbook/
713 .Re
714 .Sh HISTORY
715 .Fx
716 1.x
717 used a manual checklist, compiled by
718 .An Rod Grimes ,
719 to produce a release.
720 Apart from being incomplete, the list put a lot of specific demands on
721 available file systems and was quite torturous to execute.
722 .Pp
723 As part of the
724 .Fx 2.0
725 release engineering effort, significant
726 effort was spent getting
727 .Pa src/release/Makefile
728 into a shape where it could at least automate most of the tediousness
729 of building a release in a sterile environment.
730 .Pp
731 For the
732 .Fx 9.0
733 release,
734 .Pa src/release/Makefile
735 was overhauled and the wrapper script
736 .Pa src/release/generate-release.sh
737 introduced to support the introduction of a new installer.
738 .Pp
739 For the
740 .Fx 9.2
741 release,
742 .Pa src/release/release.sh
743 was introduced to support per-build configuration files.
744 .Pa src/release/release.sh
745 is heavily based on the
746 .Pa src/release/generate-release.sh
747 script.
748 .Pp
749 At near 1000 revisions spread over multiple branches, the
750 .Xr svn 1
751 log of
752 .Pa src/release/Makefile
753 contains a vivid historical record of some
754 of the hardships release engineers go through.
755 .Sh AUTHORS
756 .Pa src/release/Makefile
757 was originally written by
758 .An -nosplit
759 .An Rod Grimes ,
760 .An Jordan Hubbard ,
761 and
762 .An Poul-Henning Kamp .
763 .Pp
764 This manual page was originally written by
765 .An Murray Stokely Aq murray@FreeBSD.org .
766 .Pp
767 It was updated by
768 .An Nathan Whitehorn Aq nwhitehorn@FreeBSD.org
769 to include the
770 .Fa generate-release.sh
771 script used for the
772 .Fx 9.0
773 release cycle.
774 .Pp
775 It was later updated by
776 .An Glen Barber Aq gjb@FreeBSD.org
777 to include the
778 .Fa release.sh
779 script used for the
780 .Fx 9.2
781 release cycle.