diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2025-10-01 18:09:44 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2025-10-07 07:33:39 +0100 |
| commit | 3d8c04b0eee35b7345c34c5265bb0478fcfc90ac (patch) | |
| tree | 2acd333b1c71222361d48f9fe324392f40252fb9 | |
| parent | 88091789f0d6234d9050c1c7a2dfc2515044ece0 (diff) | |
| download | focaccia-qemu-3d8c04b0eee35b7345c34c5265bb0478fcfc90ac.tar.gz focaccia-qemu-3d8c04b0eee35b7345c34c5265bb0478fcfc90ac.zip | |
tests/lcitool: drop 64 bit guests from i686 cross build
With only TCG available we can't support 64 bit guests on a 32 bit host. Fixes: 5c27baf9519 (docs/about/deprecated: Deprecate 32-bit x86 hosts for system emulation) Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-ID: <20251001170947.2769296-5-alex.bennee@linaro.org>
| -rw-r--r-- | tests/docker/dockerfiles/debian-i686-cross.docker | 2 | ||||
| -rwxr-xr-x | tests/lcitool/refresh | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/tests/docker/dockerfiles/debian-i686-cross.docker b/tests/docker/dockerfiles/debian-i686-cross.docker index 4e8b3a8293..2998764065 100644 --- a/tests/docker/dockerfiles/debian-i686-cross.docker +++ b/tests/docker/dockerfiles/debian-i686-cross.docker @@ -178,7 +178,7 @@ ENV ABI "i686-linux-gnu" ENV MESON_OPTS "--cross-file=i686-linux-gnu" ENV RUST_TARGET "i686-unknown-linux-gnu" ENV QEMU_CONFIGURE_OPTS --cross-prefix=i686-linux-gnu- -ENV DEF_TARGET_LIST x86_64-softmmu,x86_64-linux-user,i386-softmmu,i386-linux-user +ENV DEF_TARGET_LIST i386-softmmu,i386-linux-user # As a final step configure the user (if env is defined) ARG USER ARG UID diff --git a/tests/lcitool/refresh b/tests/lcitool/refresh index 645959318a..185a47cebe 100755 --- a/tests/lcitool/refresh +++ b/tests/lcitool/refresh @@ -216,8 +216,6 @@ try: generate_dockerfile("debian-i686-cross", "debian-13", cross="i686", trailer=cross_build("i686-linux-gnu-", - "x86_64-softmmu," - "x86_64-linux-user," "i386-softmmu,i386-linux-user")) # mips no longer supported in debian-13 |