mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 19:08:58 +00:00
0ebf94ab54
Fix CROCHETBRANCH. PR: 199760 Sponsored by: The FreeBSD Foundation
33 lines
812 B
Plaintext
33 lines
812 B
Plaintext
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Build chroot configuration
|
|
TARGET="amd64"
|
|
TARGET_ARCH="amd64"
|
|
SVNROOT="svn://svn.FreeBSD.org/"
|
|
SRCBRANCH="base/stable/10@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
|
|
EMBEDDEDPORTS="lang/python textproc/gsed"
|
|
XDEV="arm"
|
|
XDEV_ARCH="armv6"
|
|
XDEV_FLAGS="WITH_GCC=1 WITH_GNUCXX=1 WITHOUT_CLANG_IS_CC=1"
|
|
KERNEL="RPI-B"
|
|
CROCHETSRC="https://github.com/freebsd/crochet"
|
|
CROCHETBRANCH="trunk@rHEAD"
|
|
UBOOTSRC="https://github.com/gonzoua/u-boot-pi"
|
|
UBOOTBRANCH="trunk"
|
|
UBOOTDIR="/tmp/crochet/u-boot-rpi"
|
|
set +a
|