From 8279b2d7ffd4d6ebc054a6f763eed840b2c84ebf Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Sat, 21 Jun 2014 19:04:33 +0200 Subject: [PATCH] syslinux: add serial console output. --- config/syslinux/syslinux.cfg | 53 +++++++++++++++++++++++++++++++++--- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/config/syslinux/syslinux.cfg b/config/syslinux/syslinux.cfg index 88320890c..3c7ae87d2 100644 --- a/config/syslinux/syslinux.cfg +++ b/config/syslinux/syslinux.cfg @@ -1,3 +1,4 @@ +SERIAL 0 115200 UI vesamenu.c32 PROMPT 0 @@ -25,8 +26,7 @@ MENU TITLE Welcome! LABEL installer MENU LABEL Install IPFire VERSION TEXT HELP -Install the version of IPFire that is -on this disk. +Install the version of IPFire that is on this disk. ENDTEXT KERNEL vmlinuz INITRD instroot @@ -80,12 +80,57 @@ Diagnose memory problems with memtest86+. LABEL hdt MENU LABEL Hardware Detection Tool TEXT HELP -Check your hardware with the Hardware Detection -Tool! +Check your hardware with the Hardware Detection Tool! ENDTEXT KERNEL hdt.c32 MENU END +MENU BEGIN serial + MENU TITLE Serial console options + + LABEL serial.back + MENU LABEL Back + MENU EXIT + + MENU SEPARATOR + + LABEL ipfire-serial + MENU LABEL Install IPFire (serial) + TEXT HELP +Run the installer with serial console. + ENDTEXT + KERNEL vmlinuz + INITRD instroot + APPEND console=ttyS0,115200 novga + + LABEL unattended-serial + MENU LABEL Unattended installation (serial) + TEXT HELP +Run an unattended installation wit serial console. + ENDTEXT + KERNEL vmlinuz + INITRD instroot + APPEND console=ttyS0,115200 novga unattended + + MENU SEPARATOR + + LABEL memtest-serial + MENU LABEL memtest86+ (serial) + TEXT HELP +Diagnose memory problems with memtest86+ with serial console. + ENDTEXT + KERNEL memtest + APPEND console=ttyS0,115200 + + LABEL hdt-serial + MENU LABEL Hardware Detection Tool + TEXT HELP +Check your hardware with the Hardware Detection Tool! + ENDTEXT + KERNEL hdt.c32 + +MENU END + MENU SEPARATOR LABEL netboot -- 2.39.2