blob: 0d22761b134f220288f0d57d0a8e6ab0d94d9795 (
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
26
|
UI menu.c32
PROMPT 0
MENU TITLE SerenityOS Boot menu
TIMEOUT 10
DEFAULT SerenityOS
LABEL SerenityOS
MENU LABEL SerenityOS
KERNEL mboot.c32
APPEND ../Kernel root=/dev/hda1
LABEL SerenityOSText
MENU LABEL SerenityOS (text mode)
KERNEL mboot.c32
APPEND ../Kernel root=/dev/hda1 boot_mode=text
LABEL SerenityOSNoACPI
MENU LABEL SerenityOS (No ACPI)
KERNEL mboot.c32
APPEND ../Kernel root=/dev/hda1 acpi=off
LABEL SerenityOSSerialDebug
MENU LABEL SerenityOS (with serial debug)
KERNEL mboot.c32
APPEND ../Kernel root=/dev/hda1 serial_debug
|