From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4ZltWS5Sdlz3393 for ; Sun, 27 Apr 2025 17:15:32 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4ZltWP1ll4z307R for ; Sun, 27 Apr 2025 17:15:29 +0000 (UTC) Received: from michael.haj.ipfire.org (michael.haj.ipfire.org [172.28.1.242]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "michael.haj.ipfire.org", Issuer "E5" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4ZltWN5KMLz2X6; Sun, 27 Apr 2025 17:15:28 +0000 (UTC) Received: by michael.haj.ipfire.org (Postfix, from userid 0) id 4ZltWN3knpzV5vV; Sun, 27 Apr 2025 17:15:28 +0000 (UTC) From: Michael Tremer To: development@lists.ipfire.org Cc: Michael Tremer Subject: [RFC PATCH 3/3] cdrom: Disable modesetting in text mode Date: Sun, 27 Apr 2025 17:15:24 +0000 Message-Id: <20250427171524.324778-3-michael.tremer@ipfire.org> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250427171524.324778-1-michael.tremer@ipfire.org> References: <20250427171524.324778-1-michael.tremer@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 1483cb264..1388ec691 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 30bc629c5..73fd53a83 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