All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Tom Rini <trini@konsulko.com>, Simon Glass <sjg@chromium.org>
Subject: [PATCH 7/9] docker: Drop coreboot for arm64
Date: Mon,  4 Nov 2024 06:39:51 -0700	[thread overview]
Message-ID: <20241104133954.840994-8-sjg@chromium.org> (raw)
In-Reply-To: <20241104133954.840994-1-sjg@chromium.org>

This isn't needed for sandbox builds and coreboot isn't much used on
arm64, nor does U-Boot have a build that supports running from coreboot
on any ARM target.

So drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/docker/Dockerfile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index 73fdd1a4302..ae3d4685869 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -258,7 +258,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then  \
     fi
 
 # Build coreboot
-RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp -xJ && \
+RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
+    wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp -xJ && \
     cd /tmp/coreboot-24.08 && \
     make crossgcc-i386 CPUS=$(nproc) && \
     make -C payloads/coreinfo olddefconfig && \
@@ -269,7 +270,8 @@ RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp
     make olddefconfig && \
     make -j $(nproc) && \
     sudo mkdir /opt/coreboot && \
-    sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/
+    sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/; \
+    fi
 
 # Create our user/group
 RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot
-- 
2.34.1


  parent reply	other threads:[~2024-11-04 13:41 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-04 13:39 [PATCH 0/9] CI: Set up for an arm64 runner Simon Glass
2024-11-04 13:39 ` [PATCH 1/9] sandbox: efi_loader: Correct use of addresses as pointers Simon Glass
2024-11-04 20:37   ` Heinrich Schuchardt
2024-11-05 15:12     ` Simon Glass
2024-11-04 13:39 ` [PATCH 2/9] test: Adjust print_ut test to use unsigned char Simon Glass
2024-11-04 20:46   ` Heinrich Schuchardt
2024-11-05 15:14     ` Simon Glass
2024-11-04 13:39 ` [PATCH 3/9] docker: Support building for multiple architectures Simon Glass
2024-11-04 13:55   ` Tom Rini
2024-11-04 20:49   ` Heinrich Schuchardt
2024-11-04 13:39 ` [PATCH 4/9] docker: Adjust packages for arm64 Simon Glass
2024-11-04 13:56   ` Tom Rini
2024-11-04 20:58   ` Heinrich Schuchardt
2024-11-04 21:34     ` Tom Rini
2024-11-05 19:21       ` Simon Glass
2024-11-04 13:39 ` [PATCH 5/9] docker: Drop grub " Simon Glass
2024-11-04 13:56   ` Tom Rini
2024-11-05 15:15     ` Simon Glass
2024-11-05 15:44       ` Tom Rini
2024-11-05 16:07         ` Simon Glass
2024-11-04 21:04   ` Heinrich Schuchardt
2024-11-04 21:18     ` Tom Rini
2024-11-04 13:39 ` [PATCH 6/9] docker: Drop tracing " Simon Glass
2024-11-04 13:56   ` Tom Rini
2024-11-04 21:22   ` Heinrich Schuchardt
2024-11-05 15:15     ` Simon Glass
2024-11-04 13:39 ` Simon Glass [this message]
2024-11-04 13:56   ` [PATCH 7/9] docker: Drop coreboot " Tom Rini
2024-11-04 13:39 ` [PATCH 8/9] docker: Fix LegacyKeyValueFormat warning with PYTHONPATH Simon Glass
2024-11-04 13:56   ` Tom Rini
2024-11-04 21:24   ` Heinrich Schuchardt
2024-11-04 13:39 ` [PATCH 9/9] CI: Add platform variable Simon Glass
2024-11-04 13:57   ` Tom Rini
2024-11-04 13:55 ` [PATCH 0/9] CI: Set up for an arm64 runner Tom Rini
2024-11-07  9:42   ` Ilias Apalodimas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241104133954.840994-8-sjg@chromium.org \
    --to=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.