]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
Dockerfile: Update to QEMU 10.0.2
authorTom Rini <trini@konsulko.com>
Wed, 16 Jul 2025 00:15:38 +0000 (18:15 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 25 Jul 2025 16:55:40 +0000 (10:55 -0600)
As QEMU 10.0.2 is the current release, update to that so that we can
update other features within CI.

Signed-off-by: Tom Rini <trini@konsulko.com>
tools/docker/Dockerfile

index ceb7a25ad4d7cc0c8d04b1d29edd190fbeac4871..02821417ca0c2673126bed721a8d92f336ed55f9 100644 (file)
@@ -125,6 +125,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
        python3-dev \
        python3-pip \
        python3-sphinx \
+       python3-tomli \
        python3-venv \
        rpm2cpio \
        sbsigntool \
@@ -218,13 +219,10 @@ RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
 
 RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \
        cd /tmp/qemu && \
-       git checkout v8.2.0 && \
+       git checkout v10.0.2 && \
        # config user.name and user.email to make 'git am' happy
        git config user.name u-boot && \
        git config user.email u-boot@denx.de && \
-       git format-patch 0c7ffc977195~..0c7ffc977195 && \
-       git am 0001-hw-net-cadence_gem-Fix-MDIO_OP_xxx-values.patch && \
-       git cherry-pick d3c79c3974 && \
        ./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,m68k-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv32-softmmu,riscv64-softmmu,sh4-softmmu,x86_64-softmmu,xtensa-softmmu" && \
        make -j$(nproc) all install && \
        rm -rf /tmp/qemu