mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
27 lines
502 B
INI
27 lines
502 B
INI
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
|
|
}
|