Serenity Operating System
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 26 lines 564 B view raw
1timeout=1 2 3menuentry 'SerenityOS (normal)' { 4 root=hd0,5 5 multiboot /boot/Prekernel root="lun0:0:0;part3" 6 module /boot/Kernel 7} 8 9menuentry 'SerenityOS (text mode)' { 10 root=hd0,5 11 multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part3" 12 module /boot/Kernel 13} 14 15menuentry 'SerenityOS (No ACPI)' { 16 root=hd0,5 17 multiboot /boot/Prekernel root="lun0:0:0;part3" acpi=off 18 module /boot/Kernel 19} 20 21menuentry 'SerenityOS (with serial debug)' { 22 root=hd0,5 23 multiboot /boot/Prekernel serial_debug root="lun0:0:0;part3" 24 module /boot/Kernel 25} 26