1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/isosrc/boot/grub/grub.cfg

34 lines
642 B
INI
Raw Normal View History

2011-08-05 08:25:00 -04:00
insmod part_msdos
insmod ext2
insmod png
if loadfont /boot/grub/fonts/unicode.pf2 ; then
set gfxmode=800x600
insmod vbe
insmod vga
insmod gfxterm
fi
terminal_output gfxterm
if background_image /boot/grub/sortix.png ; then
set color_normal=white/black
set color_highlight=white/light-gray
else
set menu_color_normal=white/black
set menu_color_highlight=white/light-gray
fi
set timeout=10
set default="0"
menuentry "Sortix" {
multiboot /boot/sortix.bin
module /boot/sortix.initrd
}
2013-02-27 06:21:34 -05:00
menuentry "Sortix (local harddisk)" {
search --file --set=root --no-floppy /sortix.bin
multiboot /sortix.bin
module /sortix.initrd.gz
}