From 407beef19cdb61137cf6a708c46592df410cd8f4 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 26 Apr 2025 14:36:18 +0000 Subject: [PATCH] cdrom: Disable modesetting in text mode This is just a precaution for users which have broken graphics. This way, the kernel should keep the simple VGA text console without actually switching on high resolutions. Signed-off-by: Michael Tremer --- config/cdrom/grub.cfg | 2 +- config/syslinux/syslinux.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cdrom/grub.cfg b/config/cdrom/grub.cfg index 1483cb2648..1388ec691f 100644 --- a/config/cdrom/grub.cfg +++ b/config/cdrom/grub.cfg @@ -23,7 +23,7 @@ menuentry 'Install NAME VERSION ARCH' --class ipfire --class gnu-linux --class g submenu 'Other Installation Options -->' { menuentry 'Install NAME VERSION (Text Mode)' --class ipfire --class gnu-linux --class gnu --class os { - linux /boot/isolinux/vmlinuz novga + linux /boot/isolinux/vmlinuz nomodeset novga initrd /boot/isolinux/instroot } diff --git a/config/syslinux/syslinux.cfg b/config/syslinux/syslinux.cfg index 30bc629c52..73fd53a835 100644 --- a/config/syslinux/syslinux.cfg +++ b/config/syslinux/syslinux.cfg @@ -50,7 +50,7 @@ Run the installer in text mode. ENDTEXT KERNEL vmlinuz INITRD instroot - APPEND novga + APPEND nomodeset novga LABEL unattended MENU LABEL Unattended installation -- 2.39.5