2017-01-05, 07:24
thanks for the great work with updating rom-o-matic to ipxe, I did not know had been updated, last time I checked it was still gpxe, great! I was able to build some .efi test files which work great, and is very convenient than compiling it manually with changing options in vim or nano etc
It appears that ticking the PXE_STACK option with EFI PXE bootstrap 64-bit .efi results in a debug crash everytime, however I don't know if this option is necessary for what I want to achieve.
I want to be able to embed a script which keeps the IP address and loads menu.ipxe via tftp or http
I used this option in the past with success
make bin-x86_64-efi/ipxe.efi EMBED=ipxe.txt
ipxe.txt
however I would like to be able to drop the dhcp option to save a bit of time, I know this is possible as it worked in the past but everytime I compile without dhcp and various different options I keep getting error http://ipxe.org/3c092083
It appears that ticking the PXE_STACK option with EFI PXE bootstrap 64-bit .efi results in a debug crash everytime, however I don't know if this option is necessary for what I want to achieve.
I want to be able to embed a script which keeps the IP address and loads menu.ipxe via tftp or http
I used this option in the past with success
make bin-x86_64-efi/ipxe.efi EMBED=ipxe.txt
ipxe.txt
Code:
#!ipxe
echo
echo == iPXE menu.ipxe from tftpd ==
echo
# Boot
dhcp
set boot-dir boot/
set menu-url ${boot-url}menu.ipxe
chain --replace --autofree ${menu-url}
however I would like to be able to drop the dhcp option to save a bit of time, I know this is possible as it worked in the past but everytime I compile without dhcp and various different options I keep getting error http://ipxe.org/3c092083