diff --git a/src/rootfsinstall.sh b/src/rootfsinstall.sh index e1122f0..0210f34 100755 --- a/src/rootfsinstall.sh +++ b/src/rootfsinstall.sh @@ -258,7 +258,7 @@ echo [ "$ASSUMEYES" ] || { echo -n "All current data in ${DRIVE} will be lost, do you want to proceed [y/N]?" read ans - [ "$ans" = "y" -o "$ans" = "Y" ] || exit 0 + [ "$ans" = "y" -o "$ans" = "Y" ] || exit 1 } if [ ! "$IMAGEMODE" -a ! "$FROMSCRIPTS" ]; then @@ -498,7 +498,7 @@ search --no-floppy --label --set=root $VOLUME_LABEL menuentry "default" { echo "Loading /boot/$KERNELDEST" -linux /boot/$KERNELDEST root=/dev/sda2 ro fbcon=rotate:1 quiet splash +linux /boot/$KERNELDEST root=/dev/sda2 ro fbcon=rotate:1 systemd.gpt_auto=0 quiet splash echo "Loading /boot/$INITRAMFSDEST" initrd /boot/$INITRAMFSDEST }