BEAGLEBONE.conf revision 264106
1261139Sgjb#
2261139Sgjb# $FreeBSD: stable/10/release/arm/BEAGLEBONE.conf 264106 2014-04-04 07:34:46Z gjb $
3261139Sgjb#
4261139Sgjb
5261139Sgjb# This is only supported on amd64 right now.  It may work on
6261139Sgjb# i386, but I do not have the hardware to test, so until I get
7261139Sgjb# a VM set up to make sure, be cautious and assume it will not.
8261139Sgjbif [ "$(uname -p)" != "amd64" ] || [ "$(uname -m)" != "amd64" ]; then
9261139Sgjb    echo "This is only supported on amd64 right now."
10261139Sgjb    exit 0
11261139Sgjbfi
12261139Sgjb
13261139Sgjb# Build chroot configuration
14261139SgjbTARGET="amd64"
15261139SgjbTARGET_ARCH="amd64"
16262810SgjbSVNROOT="svn://svn.FreeBSD.org/"
17264106SgjbSRCBRANCH="base/stable/10@rHEAD"
18261139SgjbDOCBRANCH="doc/head@rHEAD"
19261139SgjbPORTBRANCH="ports/head@rHEAD"
20261139SgjbNODOC=yes
21261139Sgjb
22261139Sgjb# Build target configuration
23261139Sgjb# Since this file is sourced by a script that runs another
24261139Sgjb# script, these must be exported.
25261139Sgjbset -a
26262314SgjbWORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
27262810SgjbKERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
28261139SgjbCHROOTDIR="/scratch"
29261139SgjbEMBEDDEDBUILD=1
30261139SgjbEMBEDDEDPORTS="lang/python textproc/gsed"
31261139SgjbXDEV="arm"
32262314SgjbXDEV_ARCH="armv6"
33261139SgjbKERNEL="BEAGLEBONE"
34261139SgjbCROCHETSRC="https://github.com/kientzle/crochet-freebsd"
35261139SgjbCROCHETBRANCH="trunk"
36261139Sgjbset +a
37261139Sgjb
38