mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
3026c37d5d
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.
11 lines
209 B
INI
11 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
|
|
}
|