mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 15:26:43 +01:00
29 lines
609 B
Plaintext
29 lines
609 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
|
||
|
XDEV="arm"
|
||
|
XDEV_ARCH="armv6"
|
||
|
KERNEL="ZEDBOARD"
|
||
|
CROCHETSRC="https://github.com/kientzle/crochet-freebsd"
|
||
|
CROCHETBRANCH="trunk"
|
||
|
set +a
|
||
|
|