|
2#
楼主 |
发表于 2011-3-21 20:39:42
|
只看该作者
Grub4dos的菜单文件
title 加载Windows7.iso
fallback 5
find --set-root /Windows7.iso
map /Windows7.iso (0xff) || map --mem /Windows7.iso (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2
title Windows XP 1
fallback 1
hide (hd0,1)
hide (hd0,2)
unhide (hd0,0)
makeactive (hd0,0)
root (hd0,0)
chainloader /ntldr
boot
title Windows XP 2
fallback 1
hide (hd0,0)
hide (hd0,2)
unhide (hd0,1)
makeactive (hd0,1)
root (hd0,1)
chainloader /ntldr
boot
title Windows 7
fallback 2
hide (hd0,0)
hide (hd0,1)
unhide (hd0,2)
makeactive (hd0,2)
find --set-root --ignore-floppies --ignore-cd /bootmgr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /bootmgr
chainloader /bootmgr
savedefault --wait=2 |
|