Deleted Added
full compact
release.conf.sample (269640) release.conf.sample (272414)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/release/release.conf.sample 269640 2014-08-06 19:06:38Z gjb $
3# $FreeBSD: head/release/release.conf.sample 272414 2014-10-02 16:13:12Z gjb $
4#
5
6## Redefine environment variables here to override prototypes
7## defined in release.sh.
8#load_chroot_env() { }
9#load_target_env() { }
10
11## Set the directory within which the release will be built.

--- 60 unchanged lines hidden (view full) ---

72## Set to a non-empty value skip checkout or update of /usr/ports in
73## the chroot. This is intended for use when /usr/ports already exists.
74#PORTS_UPDATE_SKIP=
75
76## Set to pass additional flags to make(1) for the build chroot setup, such
77## as TARGET/TARGET_ARCH.
78#CHROOT_MAKEENV=
79
4#
5
6## Redefine environment variables here to override prototypes
7## defined in release.sh.
8#load_chroot_env() { }
9#load_target_env() { }
10
11## Set the directory within which the release will be built.

--- 60 unchanged lines hidden (view full) ---

72## Set to a non-empty value skip checkout or update of /usr/ports in
73## the chroot. This is intended for use when /usr/ports already exists.
74#PORTS_UPDATE_SKIP=
75
76## Set to pass additional flags to make(1) for the build chroot setup, such
77## as TARGET/TARGET_ARCH.
78#CHROOT_MAKEENV=
79
80## Set to a non-empty value to build virtual machine images as part of the
81## release build.
82#WITH_VMIMAGES=
83
84## Set to a non-empty value to compress virtual machine images with xz(1)
85## as part of the release build.
86#WITH_COMPRESSED_VMIMAGES=
87
88## If WITH_VMIMAGES is set to a non-empty value, this is the name of the
89## file to use for the installed userland/kernel.
90#VMBASE="vm"
91
92## If WITH_VMIMAGES is set to a non-empty value, this is the size of the
93## virtual machine disk filesystem. Valid size values are described in
94## the truncate(1) manual page.
95#VMSIZE="20G"
96
97## If WITH_VMIMAGES is set to a non-empty value, this is a list of disk
98## image formats to create. Valid values are listed in the mkimg(1)
99## manual page, as well as 'mkimg --formats' output.
100#VMFORMATS="vhdf vmdk qcow2 raw"