From 86540647db08b295abe34426b5faaa7505e4ba34 Mon Sep 17 00:00:00 2001 From: nl6720 Date: Sun, 26 Jun 2022 12:59:47 +0300 Subject: configs/*/grub/grub.cfg: enable serial input and output Try to initialize a serial device and use it for input and output. Add more comments to grub.cfg to explain what is done. Related to #75 --- configs/baseline/grub/grub.cfg | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'configs/baseline/grub/grub.cfg') diff --git a/configs/baseline/grub/grub.cfg b/configs/baseline/grub/grub.cfg index 3df0b98..dead8ce 100644 --- a/configs/baseline/grub/grub.cfg +++ b/configs/baseline/grub/grub.cfg @@ -1,12 +1,12 @@ +# Load partition table and file system modules insmod part_gpt insmod part_msdos insmod fat insmod iso9660 +# Use graphics-mode output insmod all_video - insmod font - if loadfont "${prefix}/fonts/unicode.pf2" ; then insmod gfxterm set gfxmode="auto" @@ -14,10 +14,20 @@ if loadfont "${prefix}/fonts/unicode.pf2" ; then terminal_output gfxterm fi +# Enable serial console +if serial --unit=0 --speed=115200; then + terminal_input --append serial + terminal_output --append serial +fi + +# Set default menu entry default=archlinux timeout=15 timeout_style=menu + +# Menu entries + menuentry "Arch Linux (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' { set gfxpayload=keep search --no-floppy --set=root --label %ARCHISO_LABEL% -- cgit v1.2.3-54-g00ecf