mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:27:34 +00:00
Kernel: Fix GRUB config by specifying the correct file name
This commit is contained in:
parent
5ff1416076
commit
61a8f3e81a
3 changed files with 12 additions and 12 deletions
|
@ -2,25 +2,25 @@ timeout=1
|
||||||
|
|
||||||
menuentry 'SerenityOS (normal)' {
|
menuentry 'SerenityOS (normal)' {
|
||||||
root=hd0,5
|
root=hd0,5
|
||||||
multiboot /boot/Bootloader root=/dev/hda4
|
multiboot /boot/Prekernel root=/dev/hda4
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (text mode)' {
|
menuentry 'SerenityOS (text mode)' {
|
||||||
root=hd0,5
|
root=hd0,5
|
||||||
multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda4
|
multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda4
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (No ACPI)' {
|
menuentry 'SerenityOS (No ACPI)' {
|
||||||
root=hd0,5
|
root=hd0,5
|
||||||
multiboot /boot/Bootloader root=/dev/hda4 acpi=off
|
multiboot /boot/Prekernel root=/dev/hda4 acpi=off
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (with serial debug)' {
|
menuentry 'SerenityOS (with serial debug)' {
|
||||||
root=hd0,5
|
root=hd0,5
|
||||||
multiboot /boot/Bootloader serial_debug root=/dev/hda4
|
multiboot /boot/Prekernel serial_debug root=/dev/hda4
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,24 +2,24 @@ timeout=1
|
||||||
|
|
||||||
menuentry 'SerenityOS (normal)' {
|
menuentry 'SerenityOS (normal)' {
|
||||||
root=hd0,2
|
root=hd0,2
|
||||||
multiboot /boot/Bootloader root=/dev/hda2
|
multiboot /boot/Prekernel root=/dev/hda2
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (text mode)' {
|
menuentry 'SerenityOS (text mode)' {
|
||||||
root=hd0,2
|
root=hd0,2
|
||||||
multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda2
|
multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda2
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (No ACPI)' {
|
menuentry 'SerenityOS (No ACPI)' {
|
||||||
root=hd0,2
|
root=hd0,2
|
||||||
multiboot /boot/Bootloader root=/dev/hda2 acpi=off
|
multiboot /boot/Prekernel root=/dev/hda2 acpi=off
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (with serial debug)' {
|
menuentry 'SerenityOS (with serial debug)' {
|
||||||
root=hd0,2
|
root=hd0,2
|
||||||
multiboot /boot/Bootloader serial_debug root=/dev/hda2
|
multiboot /boot/Prekernel serial_debug root=/dev/hda2
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,24 +2,24 @@ timeout=1
|
||||||
|
|
||||||
menuentry 'SerenityOS (normal)' {
|
menuentry 'SerenityOS (normal)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/Bootloader root=/dev/hda1
|
multiboot /boot/Prekernel root=/dev/hda1
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (text mode)' {
|
menuentry 'SerenityOS (text mode)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda1
|
multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda1
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (No ACPI)' {
|
menuentry 'SerenityOS (No ACPI)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/Bootloader root=/dev/hda1 acpi=off
|
multiboot /boot/Prekernel root=/dev/hda1 acpi=off
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry 'SerenityOS (with serial debug)' {
|
menuentry 'SerenityOS (with serial debug)' {
|
||||||
root=hd0,1
|
root=hd0,1
|
||||||
multiboot /boot/Bootloader serial_debug root=/dev/hda1
|
multiboot /boot/Prekernel serial_debug root=/dev/hda1
|
||||||
module /boot/Kernel
|
module /boot/Kernel
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue