mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-26 04:35:41 +03:00
Meta: Use correct boot device selections when using GRUB images
This commit is contained in:
parent
94e39308e3
commit
159f9688dc
Notes:
sideshowbarker
2024-07-17 10:16:43 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/159f9688dc Pull-request: https://github.com/SerenityOS/serenity/pull/15097 Issue: https://github.com/SerenityOS/serenity/issues/15095
@ -2,25 +2,25 @@ timeout=1
|
||||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel root=/dev/hda4
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part3"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (text mode)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda4
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part3"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel root=/dev/hda4 acpi=off
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part3" acpi=off
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/Prekernel serial_debug root=/dev/hda4
|
||||
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part3"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
|
@ -2,24 +2,24 @@ timeout=1
|
||||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel root=/dev/hda2
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part1"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (text mode)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda2
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part1"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel root=/dev/hda2 acpi=off
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part1" acpi=off
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/Prekernel serial_debug root=/dev/hda2
|
||||
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part1"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
@ -2,24 +2,24 @@ timeout=1
|
||||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel root=/dev/hda1
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part0"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (text mode)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda1
|
||||
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part0"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel root=/dev/hda1 acpi=off
|
||||
multiboot /boot/Prekernel root="lun0:0:0;part0" acpi=off
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/Prekernel serial_debug root=/dev/hda1
|
||||
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part0"
|
||||
module /boot/Kernel
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user