mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
60715695b2
From now we can use build-image-grub.sh to generate a virtual disk with the supported partition schemes - MBR, GPT & EBR (MBR + Extended partitions).
17 lines
312 B
INI
17 lines
312 B
INI
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
|
|
}
|
|
|