|
|
在ipxe菜单中使用了
imgfetch --name menubackimg ${protocol}://${booturl}/ipxe.png
console --picture menubackimg --x 800 --y 600 --keep
但在选择菜单后再执行加载PE镜像时报错(在未用图片前,这一段是正常加载的)
:wimboot #启动菜单上选中的PE
kernel ${protocol}://${booturl}/boot/wimboot gui | goto retry
initrd ${protocol}://${booturl}/boot/boot.sdi boot.sdi || goto retry
initrd ${protocol}://${booturl}/bootmgr.exe bootmgr.exe || goto retry
initrd ${protocol}://${booturl}/boot/bxe bxd || goto retry
initrd ${protocol}://${booturl}/wim/${bootfile} boot.wim || goto retry
boot || goto retry
goto start
报command line: "gui"
Bad CPIO magic
FATAL: could not extract initrd files
如果去掉gui,即 kernel ${protocol}://${booturl}/boot/wimboot || goto retry
.....
报Bad CPIO magic
FATAL: could not extract initrd files
|
|