af46b1fe8b
r271676: Catch up with Crochet changes to fix the BEAGLEBONE build. r271677: Catch up with Crochet changes to fix the WANDBOARD-QUAD build. r271678: Set a static revision of the Crochet checkout to avoid surprise build failures. Approved by: re (marius) Sponsored by: The FreeBSD Foundation
30 lines
679 B
Plaintext
30 lines
679 B
Plaintext
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Build chroot configuration
|
|
TARGET="amd64"
|
|
TARGET_ARCH="amd64"
|
|
SVNROOT="svn://svn.FreeBSD.org/"
|
|
SRCBRANCH="base/stable/10@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
|
|
XDEV="arm"
|
|
XDEV_ARCH="armv6"
|
|
XDEV_FLAGS="WITH_GCC=1 WITH_GNUCXX=1 WITHOUT_CLANG_IS_CC=1"
|
|
KERNEL="ZEDBOARD"
|
|
CROCHETSRC="https://github.com/kientzle/crochet-freebsd"
|
|
CROCHETBRANCH="trunk@r744"
|
|
set +a
|
|
|