metal3-chart: Adjust ipxe firmware filename #332
Reference in New Issue
Block a user
Delete Branch "steven.hardy/Factory:metal3_pxe"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The dnsmasq configuration expects this to be named snponly.efi - to align with
upstream we can adjust the target filename in the Dockerfile
Fixes: https://github.com/suse-edge/charts/issues/188
Small changes to be more consistent across architectures
@@ -88,3 +88,3 @@#!ArchExclusiveLine: x86_64RUN if [ "$(uname -m)" = "x86_64" ];then \cp /usr/share/ipxe/ipxe-x86_64.efi /tftpboot/ipxe.efi ;\cp /usr/share/ipxe/ipxe-x86_64.efi /tftpboot/snponly.efi ;\From a quick look we should take
/usr/share/ipxe/snp-x86_64.efirather thanipxe-x86_64.efias source file.@@ -92,3 +92,3 @@#!ArchExclusiveLine: aarch64RUN if [ "$(uname -m)" = "aarch64" ]; then\cp /usr/share/ipxe/snp-arm64.efi /tftpboot/ipxe.efi; cp /usr/share/ipxe/snp-arm64.efi /tftpboot/snp-arm64.efi; cp /usr/share/ipxe/snp-arm64.efi /tftpboot/snp.efi ;\cp /usr/share/ipxe/snp-arm64.efi /tftpboot/snponly.efi; cp /usr/share/ipxe/snp-arm64.efi /tftpboot/snp-arm64.efi; cp /usr/share/ipxe/snp-arm64.efi /tftpboot/snp.efi ;\We don't need the
/tftpboot/snp-arm64.efiand/tftpboot/snp.eficopies.ef68897d37to92b0df2060Need to update release manifest, otherwise good to go