|
set pref=/boot/grub
set default="0"
set timeout="7200"
insmod efi_gop
insmod efi_uga
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
font=$prefix/unifont.pf2
fi
if loadfont $font; then
set gfxmode=auto
insmod gfxterm
# Set the language for boot menu prompt, e.g., en_US, zh_TW...
set lang=en_US
terminal_output gfxterm
fi
set hidden_timeout_quiet=false
insmod png
if background_image $pref/ocswp-grub2.png; then
set color_normal=black/black
set color_highlight=magenta/black
else
set color_normal=cyan/blue
set color_highlight=white/blue
fi
set linux_cmd=linux
set initrd_cmd=initrd
export linux_cmd initrd_cmd
insmod play
play 960 440 1 0 4 440 1
menuentry "安装计算机系统" --id live-default { configfile /boot/grub/jsjcj.cfg}
这一段文本是显示中文的 |
|