From 0c0af35ebcbc55888861e78ba500d4315f49d296 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Thu, 24 Oct 2024 08:20:17 +0200 Subject: [PATCH] cdrom: add serial console to uEFI menu this is only needed on systems that support both video out and serial console to force serial. --- config/cdrom/grub.cfg | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/config/cdrom/grub.cfg b/config/cdrom/grub.cfg index 50a7c24881..1483cb2648 100644 --- a/config/cdrom/grub.cfg +++ b/config/cdrom/grub.cfg @@ -33,6 +33,22 @@ submenu 'Other Installation Options -->' { } } +submenu 'Serial Console -->' { +menuentry 'Install NAME VERSION ARCH (serial console)' --class ipfire --class gnu-linux --class gnu --class os { + linux /boot/isolinux/vmlinuz console=ttyS0,115200n8 novga + initrd /boot/isolinux/instroot + } + + menuentry 'Unattended installation (serial console)' --class ipfire --class gnu-linux --class gnu --class os { + linux /boot/isolinux/vmlinuz installer.unattended console=ttyS0,115200n8 novga + initrd /boot/isolinux/instroot + } + + menuentry 'memtest86+ (serial console)' { + linux /boot/isolinux/memtest console=ttyS0,115200n8 + } +} + submenu 'Tools -->' { menuentry 'memtest86+' { linux /boot/isolinux/memtest -- 2.39.5