Rename build-umlrootfs script to build-rootimg

This commit is contained in:
Reto Buerki
2013-01-17 16:54:55 +01:00
committed by Tobias Brunner
parent 258cbd40cf
commit 90dd71e41c
3 changed files with 6 additions and 7 deletions
+5 -5
View File
@@ -9,16 +9,16 @@ then
$PWD/scripts/build-baseimage || exit 1
fi
if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
then
$PWD/scripts/build-rootimage || exit 1
fi
if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
then
$PWD/scripts/build-guestkernel || exit 1
fi
if [ $ENABLE_BUILD_UMLROOTFS = "yes" ]
then
$PWD/scripts/build-umlrootfs || exit 1
fi
if [ $ENABLE_BUILD_UMLHOSTFS = "yes" ]
then
$PWD/scripts/build-umlhostfs $HOSTS || exit 1
@@ -19,7 +19,6 @@ echo "Building root image"
. $PWD/scripts/function.sh
[ `id -u` -eq 0 ] || die "You must be root to run $0"
[ -f "$BASEIMG" ] || die "Base image $BASEIMG not found"
check_commands partprobe qemu-nbd
+1 -1
View File
@@ -71,8 +71,8 @@ SSHCONF="-F $TESTDIR/testing/ssh_config"
# Enable particular steps in the make-testing
#
ENABLE_BUILD_BASEIMAGE="yes"
ENABLE_BUILD_ROOTIMAGE="yes"
ENABLE_BUILD_GUESTKERNEL="yes"
ENABLE_BUILD_UMLROOTFS="yes"
ENABLE_BUILD_UMLHOSTFS="yes"
##############################################################