release.conf.sample revision 259151
135006Sjb#!/bin/sh
217706Sjulian#
317706Sjulian# $FreeBSD: stable/10/release/release.conf.sample 259151 2013-12-10 00:35:33Z gjb $
417706Sjulian#
517706Sjulian
617706Sjulian## Set the directory within which the release will be built.
717706SjulianCHROOTDIR="/scratch"
817706Sjulian
917706Sjulian## Set the svn host.
1017706SjulianSVNROOT="svn://svn.FreeBSD.org"
1117706Sjulian
1217706Sjulian## Set the src/, ports/, and doc/ branches or tags.
1317706SjulianSRCBRANCH="base/head@rHEAD"
1417706SjulianDOCBRANCH="doc/head@rHEAD"
1517706SjulianPORTBRANCH="ports/head@rHEAD"
1617706Sjulian
1717706Sjulian## Run svn co --force for src checkout.
1817706Sjulian#SRC_FORCE_CHECKOUT=yes
1917706Sjulian
2017706Sjulian## Set to override the default target architecture.
2117706Sjulian#TARGET="amd64"
2217706Sjulian#TARGET_ARCH="amd64"
2317706Sjulian#KERNEL="GENERIC"
2417706Sjulian## Multiple kernels may be set.
2517706Sjulian#KERNEL="GENERIC XENHVM"
2617706Sjulian
2717706Sjulian## Set to specify a custom make.conf and/or src.conf
2817706Sjulian#MAKE_CONF="/etc/local/make.conf"
2917706Sjulian#SRC_CONF="/etc/local/src.conf"
3017706Sjulian
3150476Speter## Set to use make(1) flags.
3248794Snik#MAKE_FLAGS="-s"
3317706Sjulian
3417706Sjulian## Set to use world- and kernel-specific make(1) flags.
3579531Sru#WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
3617706Sjulian#KERNEL_FLAGS="-j $(expr $(sysctl -n hw.ncpu) / 2)"
3717706Sjulian
3817706Sjulian## Set miscellaneous 'make release' settings.
3959501Sphantom#NODOC=
40124535Sru#NOPORTS=
4117706Sjulian#RELSTRING=
4284306Sru#WITH_DVD=
4317706Sjulian