192daa5d18
XDEV_FLAGS variable in ${KERNCONF}.conf file. MFC after: 3 days X-MFC-Note: fix stable/10 XDEV_FLAGS local for branch Sponsored by: The FreeBSD Foundation
31 lines
724 B
Plaintext
31 lines
724 B
Plaintext
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Build chroot configuration
|
|
TARGET="amd64"
|
|
TARGET_ARCH="amd64"
|
|
SVNROOT="svn://svn.FreeBSD.org/"
|
|
SRCBRANCH="base/head@rHEAD"
|
|
DOCBRANCH="doc/head@rHEAD"
|
|
PORTBRANCH="ports/head@rHEAD"
|
|
NODOC=yes
|
|
|
|
# Build target configuration
|
|
# Since this file is sourced by a script that runs another
|
|
# script, these must be exported.
|
|
set -a
|
|
WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
|
|
KERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
|
|
CHROOTDIR="/scratch"
|
|
EMBEDDEDBUILD=1
|
|
EMBEDDEDPORTS="lang/python textproc/gsed"
|
|
XDEV="arm"
|
|
XDEV_ARCH="armv6"
|
|
XDEV_FLAGS="WITH_GCC=1 WITH_GCC_BOOTSTRAP=1 WITHOUT_CLANG_IS_CC=1"
|
|
KERNEL="WANDBOARD-QUAD"
|
|
CROCHETSRC="https://github.com/kientzle/crochet-freebsd"
|
|
CROCHETBRANCH="trunk"
|
|
set +a
|
|
|