Deleted Added
sdiff udiff text old ( 259079 ) new ( 262499 )
full compact
1#!/bin/sh
2#
3# $FreeBSD: head/release/release.conf.sample 262499 2014-02-25 22:13:48Z gjb $
4#
5
6## Set the directory within which the release will be built.
7CHROOTDIR="/scratch"
8
9## Set the svn host.
10SVNROOT="svn://svn.FreeBSD.org/"
11
12## Set the src/, ports/, and doc/ branches or tags.
13SRCBRANCH="base/head@rHEAD"
14DOCBRANCH="doc/head@rHEAD"
15PORTBRANCH="ports/head@rHEAD"
16
17## Run svn co --force for src checkout.
18#SRC_FORCE_CHECKOUT=yes
19
20## Sample configuration for using git instead of svn.
21#VCSCMD="/usr/local/bin/git clone --branch master"
22#SVNROOT=""
23#SRCBRANCH="https://github.com/freebsd/freebsd"
24#DOCBRANCH="https://github.com/freebsd/freebsd-doc"
25#PORTBRANCH="https://github.com/freebsd/freebsd-ports"
26
27## Set to override the default target architecture.
28#TARGET="amd64"
29#TARGET_ARCH="amd64"
30#KERNEL="GENERIC"
31## Multiple kernels may be set.
32#KERNEL="GENERIC XENHVM"
33
34## Set to specify a custom make.conf and/or src.conf

--- 15 unchanged lines hidden ---