release.conf.sample revision 262794
1290001Sglebius#!/bin/sh
2290001Sglebius#
3290001Sglebius# $FreeBSD: stable/9/release/release.conf.sample 262794 2014-03-05 17:23:38Z gjb $
4290001Sglebius#
5290001Sglebius
6290001Sglebius## Set the directory within which the release will be built.
7290001SglebiusCHROOTDIR="/scratch"
8290001Sglebius
9290001Sglebius## Set the svn host.
10293896SglebiusSVNROOT="svn://svn.FreeBSD.org/"
11290001Sglebius
12290001Sglebius## Set the src/, ports/, and doc/ branches or tags.
13290001SglebiusSRCBRANCH="base/stable/9@rHEAD"
14290001SglebiusDOCBRANCH="doc/head@rHEAD"
15290001SglebiusPORTBRANCH="ports/head@rHEAD"
16290001Sglebius
17290001Sglebius## Run svn co --force for src checkout.
18293896Sglebius#SRC_FORCE_CHECKOUT=yes
19293896Sglebius
20293896Sglebius## Sample configuration for using git instead of svn.
21293896Sglebius#VCSCMD="/usr/local/bin/git clone --branch master"
22293896Sglebius#SVNROOT=""
23293896Sglebius#SRCBRANCH="https://github.com/freebsd/freebsd"
24293896Sglebius#DOCBRANCH="https://github.com/freebsd/freebsd-doc"
25293896Sglebius#PORTBRANCH="https://github.com/freebsd/freebsd-ports"
26290001Sglebius
27294905Sdelphij## Set to override the default target architecture.
28294905Sdelphij#TARGET="amd64"
29290001Sglebius#TARGET_ARCH="amd64"
30290001Sglebius#KERNEL="GENERIC"
31290001Sglebius## Multiple kernels may be set.
32290001Sglebius#KERNEL="GENERIC XENHVM"
33290001Sglebius
34290001Sglebius## Set to specify a custom make.conf and/or src.conf
35290001Sglebius#MAKE_CONF="/etc/local/make.conf"
36290001Sglebius#SRC_CONF="/etc/local/src.conf"
37294905Sdelphij
38294905Sdelphij## Set to use make(1) flags.
39290001Sglebius#MAKE_FLAGS="-s"
40290001Sglebius
41290001Sglebius## Set to use world- and kernel-specific make(1) flags.
42290001Sglebius#WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
43290001Sglebius#KERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
44290001Sglebius
45290001Sglebius## Set miscellaneous 'make release' settings.
46290001Sglebius#NODOC=
47290001Sglebius#NOPORTS=
48290001Sglebius#RELSTRING=
49290001Sglebius#WITH_DVD=
50290001Sglebius