ladybird/Kernel/grub.cfg
Conrad Pankoff 3026c37d5d Kernel: Add serial_debug cmdline parameter
serial_debug will output all the kprintf and dbgprintf data to COM1 at
8-N-1 57600 baud. this is particularly useful for debugging the boot
process on live hardware.

Note: it must be the first parameter in the boot cmdline.
2019-08-11 08:22:42 +02:00

12 lines
209 B
INI

timeout=1
menuentry 'Serenity (normal)' {
root=hd0,1
multiboot /boot/kernel root=/dev/hda1
}
menuentry 'Serenity (with serial debug)' {
root=hd0,1
multiboot /boot/kernel serial_debug root=/dev/hda1
}