mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
c2ef7f740b
Also, PCI Initializer dismiss() now deletes the object correctly, and the PCI initialization process no longer use the DMI decoder to determine if PCI is supported. grub configuration files include an entry to boot the OS without ACPI support.
17 lines
311 B
INI
17 lines
311 B
INI
timeout=1
|
|
|
|
menuentry 'SerenityOS (normal)' {
|
|
root=hd0,2
|
|
multiboot /boot/kernel root=/dev/hda2
|
|
}
|
|
|
|
menuentry 'SerenityOS (No ACPI)' {
|
|
root=hd0,2
|
|
multiboot /boot/kernel root=/dev/hda2 noacpi
|
|
}
|
|
|
|
menuentry 'SerenityOS (with serial debug)' {
|
|
root=hd0,2
|
|
multiboot /boot/kernel serial_debug root=/dev/hda2
|
|
}
|