
On Mon, Nov 04, 2024 at 10:04:39PM +0100, Heinrich Schuchardt wrote:
Am 4. November 2024 14:39:49 MEZ schrieb Simon Glass sjg@chromium.org:
This doesn't build on arm64 at present, so drop it for now. We only expect to run sandbox tests, so perhaps it isn't needed.
Signed-off-by: Simon Glass sjg@chromium.org
tools/docker/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index c4c3dc5a901..60106a82801 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -134,7 +134,9 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ RUN chmod +r /boot/vmlinu*
# Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit -RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \ +# This fails on arm64 +RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
- git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \ cd /tmp/grub && \ git checkout grub-2.06 && \
Upstream GRUB builds for arm64 and riscv64.
Please, retry with grub-2.12.
Well, lets do that upgrade separately.