|
本帖最后由 yanglin 于 2018-10-6 17:38 编辑
如题所述 问下
GRUB4DOS 能否查询指定通过分区卷名 定位(hdx,x)
我现在多硬盘多系统分区书写 是这样
但是有一个所安装系统分区 放个标志分区文件 例如我实际机子标志文件 FIRST_SYS 和SECOND_SYS
我的实际机子书写模式:
title [6] 启动第一硬盘系统 (FIRST_开头卷标) \n Xp X86系统
find --set-root --ignore-floppies --ignore-cd /SECOND_SYS && checkrange 0x07 parttype () && hide
find --set-root --ignore-floppies --ignore-cd /FIRST_SYS && checkrange 0x17 parttype () && unhide
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /FIRST_SYS
rootnoverify ()
#makeactive ()
chainloader +1
savedefault --wait=2
title [7] 启动第二硬盘系统 (SECOND_开头卷标) \n Win7 X64系统
find --set-root --ignore-floppies --ignore-cd /FIRST_SYS && checkrange 0x07 parttype () && hide
find --set-root --ignore-floppies --ignore-cd /SECOND_SYS && checkrange 0x17 parttype () && unhide
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /SECOND_SYS
rootnoverify ()
#makeactive ()
chainloader +1
savedefault --wait=2
|
|