mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
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.
12 lines
209 B
INI
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
|
|
}
|