Update to new PXE which should support imgextract

This commit is contained in:
Gregory Kurtzer
2022-05-26 19:55:00 -07:00
parent 2f6c1f728d
commit 27ea7f2022
10 changed files with 42 additions and 23 deletions

View File

@@ -27,7 +27,7 @@ func TFTP() error {
}
fmt.Printf("Writing PXE files to: %s\n", tftpdir)
for _, f := range [4]string{"x86.efi", "i386.efi", "i386.kpxe", "arm64.efi"} {
for _, f := range [4]string{"x86_64.efi", "x86_64.kpxe", "arm64.efi"} {
err = util.SafeCopyFile(path.Join(buildconfig.DATADIR(), "warewulf", "ipxe", f), path.Join(tftpdir, f))
if err != nil {
wwlog.Printf(wwlog.ERROR, "%s\n", err)