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