From bdf11051be86dc1ca09fa821b14f076f8d957253 Mon Sep 17 00:00:00 2001 From: Brian Clemens Date: Fri, 23 Apr 2021 19:48:48 +0900 Subject: [PATCH] ARM iPXE filenames in dhcpd configuration template --- etc/dhcp/default-dhcpd.conf | 4 ++-- etc/dhcp/static-dhcpd.conf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/dhcp/default-dhcpd.conf b/etc/dhcp/default-dhcpd.conf index de193dc2..ce08e8d9 100644 --- a/etc/dhcp/default-dhcpd.conf +++ b/etc/dhcp/default-dhcpd.conf @@ -19,9 +19,9 @@ if exists user-class and option user-class = "iPXE" { filename "http://{{$.Ipaddr}}:9873/ipxe/${mac:hexhyp}"; } else { if option architecture-type = 00:0B { - filename "/warewulf/ipxe/bin-arm64-efi/snp.efi"; + filename "/warewulf/arm64.efi"; } elsif option architecture-type = 00:0A { - filename "/warewulf/ipxe/bin-arm32-efi/placeholder.efi"; + filename "/warewulf/arm32.efi"; } elsif option architecture-type = 00:09 { filename "/warewulf/x86.efi"; } elsif option architecture-type = 00:07 { diff --git a/etc/dhcp/static-dhcpd.conf b/etc/dhcp/static-dhcpd.conf index 94adc820..44af6485 100644 --- a/etc/dhcp/static-dhcpd.conf +++ b/etc/dhcp/static-dhcpd.conf @@ -19,9 +19,9 @@ if exists user-class and option user-class = "iPXE" { filename "http://{{$.Ipaddr}}:9873/ipxe/${mac:hexhyp}"; } else { if option architecture-type = 00:0B { - filename "/warewulf/ipxe/bin-arm64-efi/snp.efi"; + filename "/warewulf/arm64.efi"; } elsif option architecture-type = 00:0A { - filename "/warewulf/ipxe/bin-arm32-efi/placeholder.efi"; + filename "/warewulf/arm32.efi"; } elsif option architecture-type = 00:09 { filename "/warewulf/x86.efi"; } elsif option architecture-type = 00:07 {