summaryrefslogtreecommitdiff
path: root/Meta/grub-mbr.cfg
blob: 20e8ef83df4f44ac113166e3722caa1e287a13fd (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,1
  multiboot /boot/Prekernel root=/dev/hda1
  module /boot/Kernel
}

menuentry 'SerenityOS (text mode)' {
  root=hd0,1
  multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda1
  module /boot/Kernel
}

menuentry 'SerenityOS (No ACPI)' {
  root=hd0,1
  multiboot /boot/Prekernel root=/dev/hda1 acpi=off
  module /boot/Kernel
}

menuentry 'SerenityOS (with serial debug)' {
  root=hd0,1
  multiboot /boot/Prekernel serial_debug root=/dev/hda1
  module /boot/Kernel
}