I am attempting to compile a "grubnetx64.efi" boot image from the GRUB2 source code.
I have attempted to write a custom module (in place of the "hello" module) and would like to compile that and configure it to work from my current PXE configuration.
My current "build" script is:
===== Script ====
make clean
./configure --with-platform=efi --target=x86_64 --program-prefix=""
make
cd grub-core/
../grub-mkimage -d . -o _bootx64.efi tftp http efinet ntfs net gfxterm efi_gop jpeg png -O x86_64-efi --prefix='(tftp)/tftpboot/' `find *.mod | xargs | sed -e 's/\.mod//g'`
==== / Script ====
The compilation completes successfully, but (as I understand it) this is not a "pxe" enabled or capable target/build option.
Any advice would be appreciated,