Files
warewulf/staticfiles/README-ipxe.md
Jonathon Anderson 4b8141f7c7 Additions to and install staticfiles README
Building off the work in #581, add additional detail to the staticfiles
README, and install an iPXE README alongside the iPXE files in their
final location.

Closes #189

Signed-off-by: Jonathon Anderson <janderson@ciq.co>
2022-12-14 12:27:56 -07:00

20 lines
551 B
Markdown

# Warewulf-provided iPXE binaries
- `arm64.efi` - EFI support for `arm64` processors
- `x86_64.efi` - EFI support for `x86_64` processors
- `x86_64.kpxe` - legacy BIOS support for `x86_64` processors
## Rebuilding
The iPXE binaries can be rebuilt with the `ipxe-update.sh`
script. This script accepts command-line arguments that are passed to
the underlying `make` process. e.g.,
```bash
echo "#!ipxe
echo Tagging with vlan 1000
vcreate --tag 1000 net0 autoboot || shell" >vlan-1000.ipxe
sh ipxe-update.sh EMBED=$(readlink -f vlan-1000.ipxe)
```