2013-06-12 13:15:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
## Set the directory within which the release will be built.
|
|
|
|
CHROOTDIR="/scratch"
|
|
|
|
|
|
|
|
## Set the svn host.
|
|
|
|
SVNROOT="svn://svn.FreeBSD.org"
|
|
|
|
|
|
|
|
## Set the src/, ports/, and doc/ branches or tags.
|
2013-08-13 20:16:14 +00:00
|
|
|
SRCBRANCH="base/head@rHEAD"
|
|
|
|
DOCBRANCH="doc/head@rHEAD"
|
|
|
|
PORTBRANCH="ports/head@rHEAD"
|
2013-06-12 13:15:28 +00:00
|
|
|
|
2013-07-05 22:04:49 +00:00
|
|
|
## Run svn co --force for src checkout.
|
|
|
|
#SRC_FORCE_CHECKOUT=yes
|
|
|
|
|
2013-06-12 13:15:28 +00:00
|
|
|
## Set to override the default target architecture.
|
|
|
|
#TARGET="amd64"
|
|
|
|
#TARGET_ARCH="amd64"
|
|
|
|
#KERNEL="GENERIC"
|
2013-07-05 22:04:49 +00:00
|
|
|
## Multiple kernels may be set.
|
|
|
|
#KERNEL="GENERIC XENHVM"
|
2013-06-12 13:15:28 +00:00
|
|
|
|
|
|
|
## Set to specify a custom make.conf and/or src.conf
|
|
|
|
#MAKE_CONF="/etc/local/make.conf"
|
|
|
|
#SRC_CONF="/etc/local/src.conf"
|
|
|
|
|
|
|
|
## Set to use make(1) flags.
|
|
|
|
#MAKE_FLAGS="-s"
|
|
|
|
|
|
|
|
## Set to use world- and kernel-specific make(1) flags.
|
|
|
|
#WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
|
|
|
|
#KERNEL_FLAGS="-j $(expr $(sysctl -n hw.ncpu) / 2)"
|
|
|
|
|
|
|
|
## Set miscellaneous 'make release' settings.
|
|
|
|
#NODOC=
|
|
|
|
#NOPORTS=
|
|
|
|
#RELSTRING=
|