release.conf.sample revision 281802
1251652Sgjb#!/bin/sh
2251652Sgjb#
3251652Sgjb# $FreeBSD: head/release/release.conf.sample 281802 2015-04-21 00:48:35Z gjb $
4251652Sgjb#
5251652Sgjb
6269640Sgjb## Redefine environment variables here to override prototypes
7269640Sgjb## defined in release.sh.
8269640Sgjb#load_chroot_env() { }
9269640Sgjb#load_target_env() { }
10281802Sgjb#buildenv_setup() { }
11269639Sgjb
12251652Sgjb## Set the directory within which the release will be built.
13251652SgjbCHROOTDIR="/scratch"
14251652Sgjb
15251652Sgjb## Set the svn host.
16262499SgjbSVNROOT="svn://svn.FreeBSD.org/"
17251652Sgjb
18251652Sgjb## Set the src/, ports/, and doc/ branches or tags.
19254293SgjbSRCBRANCH="base/head@rHEAD"
20254293SgjbDOCBRANCH="doc/head@rHEAD"
21254293SgjbPORTBRANCH="ports/head@rHEAD"
22251652Sgjb
23252846Sgjb## Run svn co --force for src checkout.
24252846Sgjb#SRC_FORCE_CHECKOUT=yes
25252846Sgjb
26262499Sgjb## Sample configuration for using git instead of svn.
27262499Sgjb#VCSCMD="/usr/local/bin/git clone --branch master"
28262499Sgjb#SVNROOT=""
29262499Sgjb#SRCBRANCH="https://github.com/freebsd/freebsd"
30262499Sgjb#DOCBRANCH="https://github.com/freebsd/freebsd-doc"
31262499Sgjb#PORTBRANCH="https://github.com/freebsd/freebsd-ports"
32262499Sgjb
33251652Sgjb## Set to override the default target architecture.
34251652Sgjb#TARGET="amd64"
35251652Sgjb#TARGET_ARCH="amd64"
36251652Sgjb#KERNEL="GENERIC"
37252846Sgjb## Multiple kernels may be set.
38252846Sgjb#KERNEL="GENERIC XENHVM"
39251652Sgjb
40251652Sgjb## Set to specify a custom make.conf and/or src.conf
41251652Sgjb#MAKE_CONF="/etc/local/make.conf"
42251652Sgjb#SRC_CONF="/etc/local/src.conf"
43251652Sgjb
44251652Sgjb## Set to use make(1) flags.
45251652Sgjb#MAKE_FLAGS="-s"
46251652Sgjb
47251652Sgjb## Set to use world- and kernel-specific make(1) flags.
48251652Sgjb#WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
49262513Sgjb#KERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
50251652Sgjb
51251652Sgjb## Set miscellaneous 'make release' settings.
52251652Sgjb#NODOC=
53251652Sgjb#NOPORTS=
54259079Sgjb#WITH_DVD=
55264027Sgjb#WITH_COMPRESSED_IMAGES=
56262810Sgjb
57279074Sgjb## Set to '1' to disable multi-threaded xz(1) compression.
58279074Sgjb#XZ_THREADS=0
59279074Sgjb
60262810Sgjb## Set when building embedded images.
61262810Sgjb#EMBEDDEDBUILD=
62262810Sgjb
63262810Sgjb## Set to skip the chroot environment buildworld/installworld/distribution
64262810Sgjb## step if it is expected the build environment will exist via alternate
65262810Sgjb## means.
66262810Sgjb#CHROOTBUILD_SKIP=
67262810Sgjb
68264343Sgjb## Set to a non-empty value skip checkout or update of /usr/src in
69264343Sgjb## the chroot.  This is intended for use when /usr/src already exists.
70264343Sgjb#SRC_UPDATE_SKIP=
71264343Sgjb
72264343Sgjb## Set to a non-empty value skip checkout or update of /usr/doc in
73264343Sgjb## the chroot.  This is intended for use when /usr/doc already exists.
74264343Sgjb#DOC_UPDATE_SKIP=
75264343Sgjb
76264343Sgjb## Set to a non-empty value skip checkout or update of /usr/ports in
77264343Sgjb## the chroot.  This is intended for use when /usr/ports already exists.
78264343Sgjb#PORTS_UPDATE_SKIP=
79264343Sgjb
80262810Sgjb## Set to pass additional flags to make(1) for the build chroot setup, such
81262810Sgjb## as TARGET/TARGET_ARCH.
82262810Sgjb#CHROOT_MAKEENV=
83262810Sgjb
84272414Sgjb## Set to a non-empty value to build virtual machine images as part of the
85272414Sgjb## release build.
86272414Sgjb#WITH_VMIMAGES=
87272414Sgjb
88272414Sgjb## Set to a non-empty value to compress virtual machine images with xz(1)
89272414Sgjb## as part of the release build.
90272414Sgjb#WITH_COMPRESSED_VMIMAGES=
91272414Sgjb
92272414Sgjb## If WITH_VMIMAGES is set to a non-empty value, this is the name of the
93272414Sgjb## file to use for the installed userland/kernel.
94272414Sgjb#VMBASE="vm"
95272414Sgjb
96272414Sgjb## If WITH_VMIMAGES is set to a non-empty value, this is the size of the
97272414Sgjb## virtual machine disk filesystem.  Valid size values are described in
98272414Sgjb## the truncate(1) manual page.
99272414Sgjb#VMSIZE="20G"
100272414Sgjb
101272414Sgjb## If WITH_VMIMAGES is set to a non-empty value, this is a list of disk
102272414Sgjb## image formats to create.  Valid values are listed in the mkimg(1)
103272414Sgjb## manual page, as well as 'mkimg --formats' output.
104272414Sgjb#VMFORMATS="vhdf vmdk qcow2 raw"
105277458Sgjb
106277458Sgjb## Set to a non-empty value to build virtual machine images for various
107277458Sgjb## cloud providers as part of the release build.
108277458Sgjb#WITH_CLOUDWARE=
109277458Sgjb
110277458Sgjb## If WITH_CLOUDWARE is set to a non-empty value, this is a list of providers
111277458Sgjb## to create disk images.
112277458Sgjb#CLOUDWARE="AZURE OPENSTACK"
113