mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
Meta: Unbreak default grub configs after Prekernel/Kernel merge
These still assume the main boot image is called Prekernel, which is no longer the case.
This commit is contained in:
parent
3095daa7c8
commit
80dad2d0b5
3 changed files with 12 additions and 24 deletions
|
@ -2,25 +2,21 @@ timeout=1
|
|||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part3"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel root="lun0:0:0;part3"
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (text mode)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part3"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel graphics_subsystem_mode=off root="lun0:0:0;part3"
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part3" acpi=off
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel root="lun0:0:0;part3" acpi=off
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part3"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel serial_debug root="lun0:0:0;part3"
|
||||
}
|
||||
|
||||
|
|
|
@ -2,24 +2,20 @@ timeout=1
|
|||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part1"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel root="lun0:0:0;part1"
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (text mode)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part1"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel graphics_subsystem_mode=off root="lun0:0:0;part1"
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part1" acpi=off
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel root="lun0:0:0;part1" acpi=off
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part1"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel serial_debug root="lun0:0:0;part1"
|
||||
}
|
||||
|
|
|
@ -2,24 +2,20 @@ timeout=1
|
|||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part0"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel root="lun0:0:0;part0"
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (text mode)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part0"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel graphics_subsystem_mode=off root="lun0:0:0;part0"
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part0" acpi=off
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel root="lun0:0:0;part0" acpi=off
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part0"
|
||||
module /boot/Kernel
|
||||
multiboot /boot/Kernel serial_debug root="lun0:0:0;part0"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue