strongswan/testing/make-testing
Reto Buerki 9b3316ed27 Use qemu/KVM virtualization instead of UML
Guest and network configuration is setup using the libvirt
virtualization API. The [start|stop]_testing scripts have been updated
accordingly.

qemu/KVM does not currently support a hostfs, so the shared build tree
mount has been dropped for now.
2013-01-17 16:54:52 +01:00

26 lines
379 B
Bash
Executable File

#!/bin/bash
. $PWD/scripts/function.sh
rm -f $LOGFILE
if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
then
$PWD/scripts/build-baseimage
fi
if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
then
$PWD/scripts/build-guestkernel
fi
if [ $ENABLE_BUILD_UMLROOTFS = "yes" ]
then
$PWD/scripts/build-umlrootfs
fi
if [ $ENABLE_BUILD_UMLHOSTFS = "yes" ]
then
$PWD/scripts/build-umlhostfs $HOSTS
fi