|
发表于 2011-11-21 11:15:53
|
显示全部楼层
这是我的,你看一下,我也没看出什么大的差别
==================================
set timeout=5
set default='0'; if [ x"$default" = xsaved ]; then load_env; set default="$saved _entry"; fi
set color_normal='light-blue/black'; set color_highlight='light-cyan/blue'
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode="1366x768x32"
insmod gfxterm
insmod vbe
terminal_output gfxterm
if terminal_output gfxterm; then true ; else
terminal gfxterm
fi
fi
insmod jpeg
background_image /boot/grub/archlinux.jpeg
# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*
# (0) Arch Linux
menuentry 'Arch Linux' {
set root='(hd0,9)'; set legacy_hdbias='0'
legacy_kernel '/boot/vmlinuz-linux' '/boot/vmlinuz-linux' 'root=/dev/sda9' ' ro' 'logo.nologo' 'quiet' 'nomodeset' 'vga=0x323' 'console=tty1' 'splash=silent, fadein,fadeout,theme:arch-black'
legacy_initrd '/boot/initramfs-linux.img' '/boot/initramfs-linux.img'
# (1) Arch Linux
}
menuentry 'Arch Linux Fallback' {
set root='(hd0,9)'; set legacy_hdbias='0'
legacy_kernel '/boot/vmlinuz-linux' '/boot/vmlinuz-linux' 'root=/dev/sda9' ' ro'
legacy_initrd '/boot/initramfs-linux-fallback.img' '/boot/initramfs-linux-fall back.img'
# (2) Windows
}
menuentry 'Windows' {
set root='(hd0,1)'; set legacy_hdbias='0'
chainloader '+1'
} |
|