Explain the output

This commit is contained in:
Nico Schottelius 2019-09-20 23:58:47 +09:00
parent 6fd93e956d
commit c8763d8360

View file

@ -19,12 +19,17 @@ sed -i -e 's/^#undef.*NET_PROTO_IPV6/#define NET_PROTO_IPV6/' \
set -x
# Finally:
echo "Building chain-loadable undionly.kpxe"
make bin/undionly.kpxe
echo "Building USB loadable undionly.kpxe"
make bin/undionly.kpxe
make bin/ipxe.usb
echo "Building EFI loadable undionly.kpxe"
make bin-x86_64-efi/ipxe.efi
cat <<EOF
Outputs:
- PXE chain-loadable: undionly.kpxe (put on tftp server)
- USB loadable ipxe.usb (dd to usb stick)
- EFI loadable: ipxe.efi (put on vfat partition)
EOF