From f18959ec2357e7b1c54bca47d3a2d0f0a7c53579 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Tue, 19 Mar 2019 10:00:29 +0100 Subject: lava-slave: fix build failure due to pxe on non-amd64 The package grub-efi-amd64-bin is only availlable on amd64. Installing it on arm64 lead to a build failure. This patch permits to install it even on arm64 --- lava-slave/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile index bd89f7a..b3ae057 100644 --- a/lava-slave/Dockerfile +++ b/lava-slave/Dockerfile @@ -35,7 +35,9 @@ RUN apt-get update RUN apt-get -y install lavacli # PXE stuff -RUN apt-get -y install grub-efi-amd64-bin +RUN if [ $(uname -m) != amd64 ]; then dpkg --add-architecture amd64 && apt-get update; fi +RUN apt-get -y install grub-efi-amd64-bin:amd64 +RUN if [ $(uname -m) != amd64 ]; then dpkg --remove architecture amd64 && apt-get update; fi RUN cd /var/lib/lava/dispatcher/tmp && grub-mknetdir --net-directory=. COPY grub.cfg /var/lib/lava/dispatcher/tmp/boot/grub/ -- cgit 1.2.3-korg