#!/bin/sh
die()
{
echo $*
exit 1
}
dobuild()
{
local ta=$1
local lf=$2
local opt=$3
echo -n "Building $ta ${opt} ... "
objdir=$(make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make -V .OBJDIR" | tail -1)
case ${objdir} in
/*) ;;
make*) echo Error message from make: $objdir
continue ;;
*) die Crazy object dir: $objdir ;;
esac
rm -rf ${objdir}
if ! make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make clean cleandepend cleandir obj depend" \
> $lf 2>&1; then
echo "Fail (cleanup)"
continue
fi
if ! make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make ${opt} -j 40 all" \
>> $lf 2>&1; then
echo "Fail (build)"
continue
fi
echo "Success"
}
top=$(make -V SRCTOP)
cd $top/stand
for i in \
arm64/aarch64 \
amd64/amd64 \
i386/i386 \
; do
ta=${i##*/}
dobuild $ta _.boot.${ta}.no_forth.log "WITHOUT_FORTH=yes"
done
for i in \
arm64/aarch64 \
amd64/amd64 \
i386/i386 \
; do
ta=${i##*/}
dobuild $ta _.boot.${ta}.no_geli.log "WITHOUT_LOADER_GEIL=yes"
done
for i in \
amd64/amd64 \
arm/armv7 \
arm64/aarch64 \
i386/i386 \
powerpc/powerpc \
powerpc/powerpc64 \
powerpc/powerpc64le \
riscv/riscv64 \
; do
ta=${i##*/}
dobuild $ta _.boot.${ta}.log ""
done
for i in \
arm64/aarch64 \
amd64/amd64 \
i386/i386 \
; do
ta=${i##*/}
dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_ZFS=no"
done
for i in \
amd64/amd64 \
i386/i386 \
; do
ta=${i##*/}
dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_BIOS_TEXTONLY=no"
done