|
原帖由 chenall 于 2011-7-2 10:49 发表 ![](http://bbs.wuyou.net/images/common/back.gif)
无菜单版测试失败,菜单版正常。
用QEMU测试,我前面贴子的参数。
找到原因了,下面语句:
if exist rootdir echo set rootdir=%rootdir% >> (fd2)/ENVI.BAT
if exist rootdir echo root %rootdir% >> (fd2)/ENVI.BAT
与
if exist rootdir && echo set rootdir=%rootdir% >> (fd2)/ENVI.BAT
if exist rootdir && echo root %rootdir% >> (fd2)/ENVI.BAT
结果不同,前面语句不会写入到文件中,这个问题也算是bug吧
[ 本帖最后由 zhaohj 于 2011-7-2 18:06 编辑 ] |
|