release.conf.sample revision 259530
1251652Sgjb#!/bin/sh
2251652Sgjb#
3251652Sgjb# $FreeBSD: stable/9/release/release.conf.sample 259530 2013-12-18 00:07:52Z gjb $
4251652Sgjb#
5251652Sgjb
6251652Sgjb## Set the directory within which the release will be built.
7251652SgjbCHROOTDIR="/scratch"
8251652Sgjb
9251652Sgjb## Set the svn host.
10251652SgjbSVNROOT="svn://svn.FreeBSD.org"
11251652Sgjb
12251652Sgjb## Set the src/, ports/, and doc/ branches or tags.
13252225SgjbSRCBRANCH="base/stable/9"
14251652SgjbDOCBRANCH="doc/head"
15251652SgjbPORTBRANCH="ports/head"
16251652Sgjb
17253019Sgjb## Run svn co --force for src checkout.
18253019Sgjb#SRC_FORCE_CHECKOUT=yes
19253019Sgjb
20251652Sgjb## Set the src/, ports/, and doc/ revisions.
21251652SgjbSRCREVISION="-rHEAD"
22251652SgjbDOCREVISION="-rHEAD"
23251652SgjbPORTREVISION="-rHEAD"
24251652Sgjb
25251652Sgjb## Set to override the default target architecture.
26251652Sgjb#TARGET="amd64"
27251652Sgjb#TARGET_ARCH="amd64"
28251652Sgjb#KERNEL="GENERIC"
29253019Sgjb## Multiple kernels may be set.
30253019Sgjb#KERNEL="GENERIC XENHVM"
31251652Sgjb
32251652Sgjb## Set to specify a custom make.conf and/or src.conf
33251652Sgjb#MAKE_CONF="/etc/local/make.conf"
34251652Sgjb#SRC_CONF="/etc/local/src.conf"
35251652Sgjb
36251652Sgjb## Set to use make(1) flags.
37251652Sgjb#MAKE_FLAGS="-s"
38251652Sgjb
39251652Sgjb## Set to use world- and kernel-specific make(1) flags.
40251652Sgjb#WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
41251652Sgjb#KERNEL_FLAGS="-j $(expr $(sysctl -n hw.ncpu) / 2)"
42251652Sgjb
43251652Sgjb## Set miscellaneous 'make release' settings.
44251652Sgjb#NODOC=
45251652Sgjb#NOPORTS=
46251652Sgjb#RELSTRING=
47259530Sgjb#WITH_DVD=
48