mu/kernel.soso/grub.cfg
Kartik Agaram 46bb1d3157 5650 - support a second OS: soso
https://github.com/ozkl/soso

+ Much smaller than Linux; builds instantly
+ Supports graphics
- No network support
- Doesn't work on a cloud server (yet?)
2019-09-14 01:45:55 -07:00

19 lines
323 B
INI

insmod vbe
insmod vga
menuentry "SOSO DISK" {
set root=(hd0,1)
multiboot /boot/kernel.bin
module /boot/initrd.fat
set gfxpayload=1024x768x32
boot
}
menuentry "SOSO CD" {
set root=(cd)
multiboot /boot/kernel.bin
module /boot/initrd.fat
set gfxpayload=1024x768x32
boot
}