4 ## Redefine environment variables here to override prototypes
5 ## defined in release.sh.
10 ## Set the directory within which the release will be built.
13 ## Do not explicitly require the devel/git port to be installed.
15 ## Set the version control system host.
16 GITROOT
="https://git.freebsd.org/"
20 ## Set the src/, ports/, and doc/ branches or tags.
24 ## Sample configuration for using git from ports.
25 #GITCMD="/usr/local/bin/git clone -q --branch main"
27 ## Set to override the default target architecture.
31 ## Multiple kernels may be set.
32 #KERNEL="GENERIC XENHVM"
34 ## Set to specify a custom make.conf and/or src.conf
35 #MAKE_CONF="/etc/local/make.conf"
36 #SRC_CONF="/etc/local/src.conf"
38 ## Set to use make(1) flags.
41 ## Set to use world- and kernel-specific make(1) flags.
42 #WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
43 #KERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
45 ## Set miscellaneous 'make release' settings.
49 #WITH_COMPRESSED_IMAGES=
51 ## Set to '1' to disable multi-threaded xz(1) compression.
54 ## Set when building embedded images.
57 ## Set to a list of ports required to build embedded system-on-chip
58 ## images, such as sysutils/u-boot-rpi.
61 ## Set to the hardware platform of the target userland. This value
62 ## is passed to make(1) to set the TARGET (value of uname -m) to cross
66 ## Set to the machine processor architecture of the target userland.
67 ## This value is passed to make(1) to set the TARGET_ARCH (value of uname -p)
69 #EMBEDDED_TARGET_ARCH=
71 ## Set to skip the chroot environment buildworld/installworld/distribution
72 ## step if it is expected the build environment will exist via alternate
76 ## Set to a non-empty value skip checkout or update of /usr/src in
77 ## the chroot. This is intended for use when /usr/src already exists.
80 ## Set to a non-empty value skip checkout or update of /usr/ports in
81 ## the chroot. This is intended for use when /usr/ports already exists.
84 ## Set to pass additional flags to make(1) for the build chroot setup, such
85 ## as TARGET/TARGET_ARCH.
88 ## Set to a non-empty value to build virtual machine images as part of the
92 ## Set to a non-empty value to compress virtual machine images with xz(1)
93 ## as part of the release build.
94 #WITH_COMPRESSED_VMIMAGES=
96 ## If WITH_VMIMAGES is set to a non-empty value, this is the name of the
97 ## file to use for the installed userland/kernel.
100 ## If WITH_VMIMAGES is set to a non-empty value, this is the size of the
101 ## virtual machine disk filesystem. Valid size values are described in
102 ## the makefs(8) manual page.
105 ## If WITH_VMIMAGES is set to a non-empty value, this is a list of disk
106 ## image formats to create. Valid values are listed in the mkimg(1)
107 ## manual page, as well as 'mkimg --formats' output.
108 #VMFORMATS="vhdf vmdk qcow2 raw"
110 ## Set to a non-empty value to build virtual machine images for various
111 ## cloud providers as part of the release build.
114 ## If WITH_CLOUDWARE is set to a non-empty value, this is a list of providers
115 ## to create disk images.
116 #CLOUDWARE="EC2 GCE ORACLE VAGRANT-VIRTUALBOX VAGRANT-VMWARE"
118 ## If WITH_OCIIMAGES is set to a non-empty value, build Open Container
119 ## Initiative (OCI) base images as part of the release.