mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-27 03:11:52 +01:00
7bcf52bd4d
Sponsored by: The FreeBSD Foundation
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
#
|
|
# $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="RPI-B"
|
|
CROCHETSRC="https://github.com/kientzle/crochet-freebsd"
|
|
CROCHETBRANCH="trunk"
|
|
UBOOTSRC="https://github.com/gonzoua/u-boot-pi"
|
|
UBOOTBRANCH="trunk"
|
|
UBOOTDIR="/tmp/crochet/u-boot-rpi"
|
|
set +a
|