[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: x64 UEFI Network boot configuration and targets?
From: |
Andrei Borzenkov |
Subject: |
Re: x64 UEFI Network boot configuration and targets? |
Date: |
Thu, 18 Sep 2014 06:19:35 +0400 |
В Wed, 17 Sep 2014 15:58:31 -0600
Joseph Kelly <address@hidden> пишет:
> Hello,
>
> What I need: instructions for *configure* and *make* to compile
> "grubnetx64.efi".
>
> 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'`
>
Use grub-mknetdir, not grub-mkimage, to create image for PXE boot and
copy files into directory for network access.
> ==== / 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,
>
>
>
> Joseph Kelly