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)' {
|
menuentry 'SerenityOS (normal)' {
|
||||||
root=hd0,5
|
root=hd0,5
|
||||||
multiboot /boot/kernel root=/dev/hda5
|
multiboot /boot/Kernel root=/dev/hda5
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (No ACPI)' {
|
menuentry 'SerenityOS (No ACPI)' {
|
||||||
root=hd0,5
|
root=hd0,5
|
||||||
multiboot /boot/kernel root=/dev/hda5 acpi=off
|
multiboot /boot/Kernel root=/dev/hda5 acpi=off
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (with serial debug)' {
|
menuentry 'SerenityOS (with serial debug)' {
|
||||||
root=hd0,5
|
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)' {
|
menuentry 'SerenityOS (normal)' {
|
||||||
root=hd0,2
|
root=hd0,2
|
||||||
multiboot /boot/kernel root=/dev/hda2
|
multiboot /boot/Kernel root=/dev/hda2
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (No ACPI)' {
|
menuentry 'SerenityOS (No ACPI)' {
|
||||||
root=hd0,2
|
root=hd0,2
|
||||||
multiboot /boot/kernel root=/dev/hda2 acpi=off
|
multiboot /boot/Kernel root=/dev/hda2 acpi=off
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (with serial debug)' {
|
menuentry 'SerenityOS (with serial debug)' {
|
||||||
root=hd0,2
|
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)' {
|
menuentry 'SerenityOS (normal)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/kernel root=/dev/hda1
|
multiboot /boot/Kernel root=/dev/hda1
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (No ACPI)' {
|
menuentry 'SerenityOS (No ACPI)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/kernel root=/dev/hda1 acpi=off
|
multiboot /boot/Kernel root=/dev/hda1 acpi=off
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (with serial debug)' {
|
menuentry 'SerenityOS (with serial debug)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/kernel serial_debug root=/dev/hda1
|
multiboot /boot/Kernel serial_debug root=/dev/hda1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue