From bffa688557f39e62b18ca02199b5ed63eb0ca63a Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Thu, 13 Sep 2018 11:14:46 +0200 Subject: [PATCH] rootfsinstall: baytrail: disable systemd gpt autodetection at boot --- src/rootfsinstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }