diff options
author | gjb <gjb@FreeBSD.org> | 2014-02-21 21:46:54 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2014-02-21 21:46:54 +0000 |
commit | 8ed76379b5a46f69f70b081018e7fdd1165d7731 (patch) | |
tree | ca6ff0cf049acfbc69c68669a53280dd073efa24 /release/arm | |
parent | eb1a5f8de9f7ea602c373a710f531abbf81141c4 (diff) | |
download | FreeBSD-src-8ed76379b5a46f69f70b081018e7fdd1165d7731.zip FreeBSD-src-8ed76379b5a46f69f70b081018e7fdd1165d7731.tar.gz |
Add configurations for WANDBOARD-QUAD images.
Tested against: head@r261642 (build only)
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'release/arm')
-rw-r--r-- | release/arm/WANDBOARD-QUAD.conf | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/release/arm/WANDBOARD-QUAD.conf b/release/arm/WANDBOARD-QUAD.conf new file mode 100644 index 0000000..b901b3d --- /dev/null +++ b/release/arm/WANDBOARD-QUAD.conf @@ -0,0 +1,37 @@ +# +# $FreeBSD$ +# + +# This is only supported on amd64 right now. It may work on +# i386, but I do not have the hardware to test, so until I get +# a VM set up to make sure, be cautious and assume it will not. +if [ "$(uname -p)" != "amd64" ] || [ "$(uname -m)" != "amd64" ]; then + echo "This is only supported on amd64 right now." + exit 0 +fi + +# 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 $(expr \( $(sysctl -n hw.ncpu) + 1 \) / 2)" +CHROOTDIR="/scratch" +EMBEDDEDBUILD=1 +EMBEDDEDPORTS="lang/python textproc/gsed" +XDEV="arm" +XDEV_ARCH="armv6" +KERNEL="WANDBOARD-QUAD" +CROCHETSRC="https://github.com/kientzle/crochet-freebsd" +CROCHETBRANCH="trunk" +set +a + |