From 4bc54d83cba09aefac53eb8714d48065f17afa5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Stefanik?= Date: Wed, 14 Feb 2024 16:02:28 +0100 Subject: [PATCH] Allow grub to autodetect screen resolution With this, systems without a supported non-vesa FB driver in Linux (such as Intel integrated graphics) get full resolution after reboot. --- steps/improve/make_bootable.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/steps/improve/make_bootable.sh b/steps/improve/make_bootable.sh index c9e9d49..30bd440 100644 --- a/steps/improve/make_bootable.sh +++ b/steps/improve/make_bootable.sh @@ -27,6 +27,7 @@ set default=0 menuentry 'Linux live-bootstrap (4.9.10)' { insmod part_msdos set root='$(grub-probe -d /dev/${DISK} -t bios_hints | sed -e 's/ //g')' + set gfxpayload=auto linux /boot/linux-4.9.10 root=/dev/${DISK} rw $(cat /proc/cmdline) } EOF