BEAGLEBONE.conf revision 261139
1#
2# $FreeBSD: user/gjb/hacking/release-embedded/release/arm/BEAGLEBONE.conf 261139 2014-01-24 22:12:59Z gjb $
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.
8if [ "$(uname -p)" != "amd64" ] || [ "$(uname -m)" != "amd64" ]; then
9    echo "This is only supported on amd64 right now."
10    exit 0
11fi
12
13# Build chroot configuration
14TARGET="amd64"
15TARGET_ARCH="amd64"
16SVNROOT="svn://svn.FreeBSD.org"
17SRCBRANCH="base/head@rHEAD"
18DOCBRANCH="doc/head@rHEAD"
19PORTBRANCH="ports/head@rHEAD"
20EMBEDDED_WORLD_FLAGS="WITH_GCC=1"
21NODOC=yes
22
23# Build target configuration
24# Since this file is sourced by a script that runs another
25# script, these must be exported.
26set -a
27CHROOTDIR="/scratch"
28EMBEDDEDBUILD=1
29EMBEDDEDPORTS="lang/python textproc/gsed"
30XDEV="arm"
31XDEV_ARCH="arm"
32KERNEL="BEAGLEBONE"
33CROCHETSRC="https://github.com/kientzle/crochet-freebsd"
34CROCHETBRANCH="trunk"
35set +a
36
37