|
原帖由 sratlf 于 2012-5-13 17:36 发表
用的什么命令 那个测试版改了脚本的返回方式 应该不会影响太大吧
我也不清楚他是那个模式进入RUN的,我将VBE和gfxmenu模式菜单部分都贴下!
/BOOT/GRUB/RUN_S是您的RUN;/BOOT/GRUB/RUN是ZXW的RUN
下面的菜单内容我基本没改过,除了改了字库文件名称,其他和原来保持一致
VBE菜单- iftitle [find --set-root /BOOT/GRUB/RUN || find --set-root /BOOT/GRUB/RUN_S] 进入RUN模块 \n\t \n\t可启动ISO、IMG、BIN、LST等文件\n\t输入文件标号即可启动!
- ## Close Menu AutoNumber
- write 0x8274 0
- clear
- echo -e \n\n $[0007]请在 $[0004]5 $[0007]秒内按键盘选择操作:
- echo -e \n\t$[0006]<$[0005]Enter$[0006]>--$[0007]按 $[0005]ENTER$[0007]键,$[0006]启动ZXW的RUN自动标号菜单.
- echo -e \n\n\t$[0006]<$[0005]Space$[0006]>--$[0007]按 $[0005]Space$[0007]键,$[0006]启动sratlf'的RUN模版示例菜单.
- echo -e \n\n\t$[0007]按 $[0005]其他任意键或不按键$[0007],$[0006]启动sratlf的RUN自动菜单\n\t
- set keyt=
- pause --wait=5 && set /A keyt=*0x4CB00
- if /i "%keyt%"=="0xD" && command /BOOT/GRUB/RUN || find --set-root /BOOT/GRUB/RUN && command /BOOT/GRUB/RUN
- if /i "%keyt%"=="0x20" && menuset u && configfile /BOOT/GRUB/RUN_SC.LST || menuset u && find --set-root /BOOT/GRUB/RUN_SC.LST && configfile /BOOT/GRUB/RUN_SC.LST
- #sratlf的RUN,当前版本为20120427版,详细介绍见这里:http://bbs.wuyou.net/forum.php?mod=viewthread&tid=191301&extra=page%3D1
- set languager=cn
- set grub4ver=0
- set showsize=0
- set ignorerr=1
- command /BOOT/GRUB/RUN_S /BOOT/IMGS/ --automenu-all --not-show.TXT || find --set-root /BOOT/GRUB/RUN_S && command /BOOT/GRUB/RUN_S /BOOT/IMGS/ --automenu-all --not-show.TXT
- reboot
复制代码 gfxmenu菜单- iftitle [find --set-root /BOOT/GRUB/RUN || find --set-root /BOOT/GRUB/RUN_S] 进入RUN模块
- terminal console
- graphicsmode -1 100:1000 100:1000 24:32
- font
- font /BOOT/GRUB/FONT_CN.HEX || find --set-root /BOOT/GRUB/FONT_CN.HEX && font /BOOT/GRUB/FONT_CN.HEX
- clear
- echo -e \n\n $[0007]请在 $[0004]5 $[0007]秒内按键盘选择操作:
- echo -e \n\t$[0006]<$[0005]Enter$[0006]>--$[0007]按 $[0005]ENTER$[0007]键,$[0006]启动ZXW的RUN自动标号菜单.
- echo -e \n\n\t$[0006]<$[0005]Space$[0006]>--$[0007]按 $[0005]Space$[0007]键,$[0006]启动sratlf'的RUN模版示例菜单.
- echo -e \n\n\t$[0007]按 $[0005]其他任意键或不按键$[0007],$[0006]启动sratlf的RUN自动菜单\n\t
- set keyt=
- pause --wait=3 && set /A keyt=*0x4CB00
- if /i "%keyt%"=="0xD" && command /BOOT/GRUB/RUN || find --set-root /BOOT/GRUB/RUN && command /BOOT/GRUB/RUN
- if /i "%keyt%"=="0x20" menuset u && configfile /BOOT/GRUB/RUN_SC.LST || find --set-root /BOOT/GRUB/RUN_SC.LST && menuset u && configfile /BOOT/GRUB/RUN_SC.LST
- splashimage /BOOT/GRUB/BACK.LZMA || splashimage /BOOT/GRUB/BACK.BMP || splashimage /BOOT/GRUB/BG.LZMA || splashimage /BOOT/GRUB/BG.BMP || splashimage /BOOT/GRUB/SNOW.LZMA
- menuset m y=3 w=60 n=1
- #sratlf的RUN,当前版本为20120427版,详细介绍见这里:http://bbs.wuyou.net/forum.php?mod=viewthread&tid=191301&extra=page%3D1
- set languager=cn
- set grub4ver=0
- set showsize=0
- set ignorerr=1
- command /BOOT/GRUB/RUN_S /BOOT/IMGS/ --automenu-all --not-show.TXT || find --set-root /BOOT/GRUB/RUN_S && command /BOOT/GRUB/RUN_S /BOOT/IMGS/ --automenu-all --not-show.TXT
- reboot
复制代码
[ 本帖最后由 zhs509 于 2012-5-13 17:44 编辑 ] |
|