blob: 4d86dc1f6c427df25a68f82de0993b5287138cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,5
multiboot /boot/kernel root=/dev/hda5
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,5
multiboot /boot/kernel root=/dev/hda5 noacpi
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,5
multiboot /boot/kernel serial_debug root=/dev/hda5
}
|