From 96d3f796df9e14591677599a08e65d1fc4f2438aa149d0eee8606e8fd11b512e Mon Sep 17 00:00:00 2001 From: Marco Chiappero Date: Tue, 1 Jul 2025 20:44:58 +0000 Subject: [PATCH] Fix incorrect ArchExclusiveLine OBS directive One Docker specific OBS directive, ArchExclusiveLine, is incorrectly testing for x86 instead of aarch64, likely due to a copy-and-paste error. Change the architecture for that RUN command. Signed-off-by: Marco Chiappero --- ironic-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic-image/Dockerfile b/ironic-image/Dockerfile index ea5e3e3..60e8240 100644 --- a/ironic-image/Dockerfile +++ b/ironic-image/Dockerfile @@ -77,7 +77,7 @@ RUN cp /usr/share/ipxe/undionly.kpxe /tftpboot/undionly.kpxe RUN if [ "$(uname -m)" = "x86_64" ];then \ cp /usr/share/ipxe/ipxe-x86_64.efi /tftpboot/ipxe.efi ;\ fi -#!ArchExclusiveLine: x86_64 +#!ArchExclusiveLine: aarch64 RUN 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 ;\ fi -- 2.49.0