|
|
你的 Wee 版本是最新的,看来 Wee 还有小毛病。
find --set-root /tools/grub.exe
會回(0x80,0)
若root (hd0,0)
會回(0x80,0):3f,c7ff53f:80,07:ntfs
这里的设备都是 (0x80,0),因此是等价的。怀疑 find 命令有 bug,没能把当前的设备号 (0x80,0) 传递给 grub.exe。试试这样:
find --set-root /tools/grub.exe
/tools/grub.exe --config-file=/tools/menu.lst
看能否成功?
如果依然失败,再试试:
find --set-root /tools/grub.exe
root
/tools/grub.exe --config-file=/tools/menu.lst
|
|