mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Meta: Grub configs use correct kernel image name
This commit is contained in:
parent
0c1ed0ebf3
commit
2ec07655cf
Notes:
sideshowbarker
2024-07-19 18:30:34 +09:00
Committer: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/2ec07655cf8
3 changed files with 9 additions and 9 deletions
|
@ -2,16 +2,16 @@ timeout=1
|
|||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/kernel root=/dev/hda5
|
||||
multiboot /boot/Kernel root=/dev/hda5
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/kernel root=/dev/hda5 acpi=off
|
||||
multiboot /boot/Kernel root=/dev/hda5 acpi=off
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,5
|
||||
multiboot /boot/kernel serial_debug root=/dev/hda5
|
||||
multiboot /boot/Kernel serial_debug root=/dev/hda5
|
||||
}
|
||||
|
||||
|
|
|
@ -2,15 +2,15 @@ timeout=1
|
|||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/kernel root=/dev/hda2
|
||||
multiboot /boot/Kernel root=/dev/hda2
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/kernel root=/dev/hda2 acpi=off
|
||||
multiboot /boot/Kernel root=/dev/hda2 acpi=off
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,2
|
||||
multiboot /boot/kernel serial_debug root=/dev/hda2
|
||||
multiboot /boot/Kernel serial_debug root=/dev/hda2
|
||||
}
|
||||
|
|
|
@ -2,15 +2,15 @@ timeout=1
|
|||
|
||||
menuentry 'SerenityOS (normal)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/kernel root=/dev/hda1
|
||||
multiboot /boot/Kernel root=/dev/hda1
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (No ACPI)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/kernel root=/dev/hda1 acpi=off
|
||||
multiboot /boot/Kernel root=/dev/hda1 acpi=off
|
||||
}
|
||||
|
||||
menuentry 'SerenityOS (with serial debug)' {
|
||||
root=hd0,1
|
||||
multiboot /boot/kernel serial_debug root=/dev/hda1
|
||||
multiboot /boot/Kernel serial_debug root=/dev/hda1
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue