diff options
author | Tom Rini <trini@konsulko.com> | 2025-07-15 18:15:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-07-25 10:55:40 -0600 |
commit | 0fabedfcde546a0d5bd17c89338d982903c2436c (patch) | |
tree | 06bb9983e56128772af526de147a55d5085f5b61 | |
parent | 910aa6c1ef2ed17ff6f738e9365664fa8b24a347 (diff) |
CI: Update to coreboot 25.03
At this point there's problems rebuilding coreboot-24.08 without manual
intervention. Let us upgrade to a newer version.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | tools/docker/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 02821417ca0..a83c80db496 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -292,8 +292,8 @@ RUN mkdir /tmp/trace && \ rm -rf /tmp/trace # Build coreboot -RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp -xJ && \ - cd /tmp/coreboot-24.08 && \ +RUN wget -O - https://coreboot.org/releases/coreboot-25.03.tar.xz | tar -C /tmp -xJ && \ + cd /tmp/coreboot-25.03 && \ make crossgcc-i386 CPUS=$(nproc) && \ make -C payloads/coreinfo olddefconfig && \ make -C payloads/coreinfo && \ @@ -304,7 +304,7 @@ RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp make -j $(nproc) && \ sudo mkdir /opt/coreboot && \ sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/ && \ - rm -rf /tmp/coreboot-24.08 + rm -rf /tmp/coreboot-25.03 # Create our user/group RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot |