2020-07-23, 14:08
Hi. First this what I have done so far.
1) I have build ipxe.efi with embeded script
2)created the boot.php with a simple menu
3)I have downloaded the latest wimboot and copied all the contents of Win10 installation DVD.
PC boots in UEFI mode and loads my menu. I choose http, it loads the setup and the I get this error:
Any ideas from here?
1) I have build ipxe.efi with embeded script
Code:
#!ipxe
dhcp
chain http://192.168.1.5/boot.php
Code:
#!ipxe
set menu-timeout 5000
set submenu-timeout${menu-timeout}
isset ${menu-default} || set menu-default exit
#console --picture http://192.168.1.5/ipxe.png
##MAIN-MENU##
:start
menu Welcome to my menu
item http Boot over HTTP
item tftp Boot over TFTP
item reboot Reboot
choose --default exit --timeout 30000 target && goto ${target}
:http
kernel wimboot
initrd http://192.168.1.5/boot/bcd
initrd http://192.168.1.5/boot/boot.sdi
initrd http://192.168.1.5/sources/boot.wim
boot
:tftp
kernel wimboot
initrd /boot/bcd
initrd /boot/boot.sdi
initrd /sources/boot.wim
boot
:reboot
reboot
:exit
exit
3)I have downloaded the latest wimboot and copied all the contents of Win10 installation DVD.
PC boots in UEFI mode and loads my menu. I choose http, it loads the setup and the I get this error:
Any ideas from here?