summaryrefslogtreecommitdiff
path: root/build-vm
diff options
context:
space:
mode:
authorAdrian Schröter <adrian@suse.de>2019-11-28 09:37:33 +0100
committerAdrian Schröter <adrian@suse.de>2019-11-28 10:28:09 +0100
commit6d5cf3aa0b8a7cabc50e091c444b8ed4c73dc1ba (patch)
treeb05ab3e906417f744cdcc00219b4383215c0c551 /build-vm
parent8eea00adf2117109281f8e2a6705fd9a0f8f5e92 (diff)
implement --shell-cmd "CMD" option
also justify code to have only one place to run the shell or command
Diffstat (limited to 'build-vm')
-rw-r--r--build-vm8
1 files changed, 3 insertions, 5 deletions
diff --git a/build-vm b/build-vm
index 0f53c66..0681797 100644
--- a/build-vm
+++ b/build-vm
@@ -863,6 +863,7 @@ vm_first_stage() {
echo ")" >> $BUILD_ROOT/.build/build.data
echo "VM_TYPE='$VM_TYPE'" >> $BUILD_ROOT/.build/build.data
echo "RUN_SHELL='$RUN_SHELL'" >> $BUILD_ROOT/.build/build.data
+ echo "RUN_SHELL_CMD='$RUN_SHELL_CMD'" >> $BUILD_ROOT/.build/build.data
echo "DO_STATISTICS='$DO_STATISTICS'" >> $BUILD_ROOT/.build/build.data
echo "TIME_PREINSTALL='$TIME_PREINSTALL'" >> $BUILD_ROOT/.build/build.data
echo "VM_WATCHDOG='$VM_WATCHDOG'" >> $BUILD_ROOT/.build/build.data
@@ -881,11 +882,8 @@ vm_first_stage() {
umount -n $BUILD_ROOT/mnt 2> /dev/null || true
vm_init_script="/.build/build"
- if test -n "$RUN_SHELL"; then
- vm_init_script="/bin/bash"
- fi
if check_use_emulator ; then
- vm_init_script="/.build/$INITVM_NAME"
+ vm_init_script="/.build/$INITVM_NAME"
fi
if test -n "$VM_ROOT" ; then
# copy out kernel & initrd (if they exist) during unmounting VM image
@@ -936,7 +934,7 @@ vm_first_stage() {
fi
vm_attach_root
- if test -n "$VM_SWAP" ; then
+ if test -n "$VM_SWAP" -a -z "$RUN_SHELL" ; then
vm_attach_swap
BUILDSTATUS=$(dd if="$VM_SWAP" bs=12 count=1 2>/dev/null | tr '\0' a)
case $BUILDSTATUS in