|
我的grub菜单如下:
title [1] USB 2.0驱动
find --set-root /boot/plpbt.bin
kernel /boot/plpbt.bin
title [2] WinPE 1.0
find --set-root /boot/winpe.iso
map --mem /boot/winpe.iso (hd32)
map --hook
chainloader (hd32)
boot
请问Grub如何先加载plpbt.bin再自动运行或跳转到下一项菜单,从而启动winpe.iso?
我把两项菜单合并到起,如下:
title [1] USB 2.0驱动
find --set-root /boot/plpbt.bin
kernel /boot/plpbt.bin
find --set-root /boot/winpe.iso
map --mem /boot/winpe.iso (hd32)
map --hook
chainloader (hd32)
boot
运行时会卡住,请问如何修改可以解决问题? |
|