1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 09:07:44 +00:00

Partition Table: Change Script files

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).
This commit is contained in:
Liav A 2020-02-02 01:12:49 +02:00 committed by Andreas Kling
parent 81544dc5b4
commit 60715695b2
5 changed files with 41 additions and 94 deletions

16
Kernel/grub-gpt.cfg Normal file
View file

@ -0,0 +1,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 noacpi
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,2
multiboot /boot/kernel serial_debug root=/dev/hda2
}