File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / testing / make-testing
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:20:09 2021 UTC (3 years, 3 months ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, HEAD
strongswan 5.9.2

#!/bin/bash

DIR=$(dirname `readlink -f $0`)
. $DIR/testing.conf

rm -f $LOGFILE
mkdir -p $BUILDDIR

if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
then
	$DIR/scripts/build-baseimage || exit 1
fi

if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
then
	$DIR/scripts/build-rootimage || exit 1
fi

if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
then
	$DIR/scripts/build-guestkernel || exit 1
fi

if [ $ENABLE_BUILD_CERTIFICATES = "yes" ]
then
	# this always builds the guest images too
	$DIR/scripts/build-certs || exit 1

elif [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
then
	$DIR/scripts/build-guestimages || exit 1
fi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>