blob: 404e44152d83a80f7b1e17b37f606ba4a4823a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,2
multiboot /boot/Prekernel root="lun0:0:0;part1"
module /boot/Kernel
}
menuentry 'SerenityOS (text mode)' {
root=hd0,2
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part1"
module /boot/Kernel
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,2
multiboot /boot/Prekernel root="lun0:0:0;part1" acpi=off
module /boot/Kernel
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,2
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part1"
module /boot/Kernel
}
|