]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - release/arm/BEAGLEBONE.conf
MFC r262810, r262862, r264105:
[FreeBSD/stable/10.git] / release / arm / BEAGLEBONE.conf
1 #
2 # $FreeBSD$
3 #
4
5 # This is only supported on amd64 right now.  It may work on
6 # i386, but I do not have the hardware to test, so until I get
7 # a VM set up to make sure, be cautious and assume it will not.
8 if [ "$(uname -p)" != "amd64" ] || [ "$(uname -m)" != "amd64" ]; then
9     echo "This is only supported on amd64 right now."
10     exit 0
11 fi
12
13 # Build chroot configuration
14 TARGET="amd64"
15 TARGET_ARCH="amd64"
16 SVNROOT="svn://svn.FreeBSD.org/"
17 SRCBRANCH="base/stable/10@rHEAD"
18 DOCBRANCH="doc/head@rHEAD"
19 PORTBRANCH="ports/head@rHEAD"
20 NODOC=yes
21
22 # Build target configuration
23 # Since this file is sourced by a script that runs another
24 # script, these must be exported.
25 set -a
26 WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
27 KERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
28 CHROOTDIR="/scratch"
29 EMBEDDEDBUILD=1
30 EMBEDDEDPORTS="lang/python textproc/gsed"
31 XDEV="arm"
32 XDEV_ARCH="armv6"
33 KERNEL="BEAGLEBONE"
34 CROCHETSRC="https://github.com/kientzle/crochet-freebsd"
35 CROCHETBRANCH="trunk"
36 set +a
37