blob: 4c1a49174fee59f4021e15b920c208a053a76e42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,5
multiboot /boot/Kernel root=/dev/hda4
}
menuentry 'SerenityOS (text mode)' {
root=hd0,5
multiboot /boot/Kernel boot_mode=no-fbdev root=/dev/hda4
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,5
multiboot /boot/Kernel root=/dev/hda4 acpi=off
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,5
multiboot /boot/Kernel serial_debug root=/dev/hda4
}
|