|
|
楼主 |
发表于 2010-7-16 10:46:28
|
显示全部楼层
提取小马永久珍藏版IMG核心,在DELL M600(8G内存)下,做PXE启动测试。
menu1.lst:
- debug off
- map --mem ()/CMPE/XMPE.IMG (hd0)
- map --mem ()/CMPE/TEST.IMG (fd0)
- map --hook
- checkrange 0x21 read 0x82a0 && pxe keep
- rootnoverify (fd0) && chainloader ()/io.sys || chainloader --force ()/io.sys
- boot
复制代码
TEST.IMG只有5个文件:io.sys msdos.sys command.sys grub.exe autoexec.bat
autoexec.bat:
- grub.exe --keep-pxe --config-file="pxe unload;chainloader (hd0,0)/wxpe/setupldr.bin;boot;"
复制代码
依然挂掉,图形如下:
用以下menu2.lst,直接引导IMG,挂掉的图形同上一致:
- debug off
- map --mem ()/CMPE/XMPE.IMG (hd0)
- map --hook
- checkrange 0x21 read 0x82a0 && pxe keep
- #pxe unload
- chainloader (hd0,0)/wxpe/setupldr.bin
- boot
复制代码
如果去掉菜单中的#,则能正常启动。
我的IMG测试也如此,挂掉图为:
另:拆开setupldr.bin的测试效果也一样。
[ 本帖最后由 canmao 于 2010-7-16 14:58 编辑 ] |
|