From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: "Edgar E . Iglesias" <edgar.iglesias@gmail.com>, qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
"Laurent Vivier" <laurent@vivier.eu>,
"Riku Voipio" <riku.voipio@iki.fi>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Thomas Huth" <thuth@redhat.com>,
devel@lists.libvirt.org,
"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PATCH v2 12/15] system: Remove support for CRIS target
Date: Wed, 4 Sep 2024 16:36:00 +0200 [thread overview]
Message-ID: <20240904143603.52934-13-philmd@linaro.org> (raw)
In-Reply-To: <20240904143603.52934-1-philmd@linaro.org>
We are about to remove the CRIS target, so remove
the sysemu part. This remove the CRIS 'none' machine.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
configs/devices/cris-softmmu/default.mak | 1 -
configs/targets/cris-softmmu.mak | 1 -
qapi/machine.json | 2 +-
include/sysemu/arch_init.h | 1 -
.gitlab-ci.d/buildtest.yml | 2 +-
.gitlab-ci.d/crossbuild-template.yml | 2 +-
6 files changed, 3 insertions(+), 6 deletions(-)
delete mode 100644 configs/devices/cris-softmmu/default.mak
delete mode 100644 configs/targets/cris-softmmu.mak
diff --git a/configs/devices/cris-softmmu/default.mak b/configs/devices/cris-softmmu/default.mak
deleted file mode 100644
index 3726699370..0000000000
--- a/configs/devices/cris-softmmu/default.mak
+++ /dev/null
@@ -1 +0,0 @@
-# Default configuration for cris-softmmu
diff --git a/configs/targets/cris-softmmu.mak b/configs/targets/cris-softmmu.mak
deleted file mode 100644
index e483c42066..0000000000
--- a/configs/targets/cris-softmmu.mak
+++ /dev/null
@@ -1 +0,0 @@
-TARGET_ARCH=cris
diff --git a/qapi/machine.json b/qapi/machine.json
index d4317435e7..63b84bc575 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -33,7 +33,7 @@
# Since: 3.0
##
{ 'enum' : 'SysEmuTarget',
- 'data' : [ 'aarch64', 'alpha', 'arm', 'avr', 'cris', 'hppa', 'i386',
+ 'data' : [ 'aarch64', 'alpha', 'arm', 'avr', 'hppa', 'i386',
'loongarch64', 'm68k', 'microblaze', 'microblazeel', 'mips', 'mips64',
'mips64el', 'mipsel', 'or1k', 'ppc',
'ppc64', 'riscv32', 'riscv64', 'rx', 's390x', 'sh4',
diff --git a/include/sysemu/arch_init.h b/include/sysemu/arch_init.h
index 8d041aa84e..5b1c1026f3 100644
--- a/include/sysemu/arch_init.h
+++ b/include/sysemu/arch_init.h
@@ -6,7 +6,6 @@ enum {
QEMU_ARCH_ALL = -1,
QEMU_ARCH_ALPHA = (1 << 0),
QEMU_ARCH_ARM = (1 << 1),
- QEMU_ARCH_CRIS = (1 << 2),
QEMU_ARCH_I386 = (1 << 3),
QEMU_ARCH_M68K = (1 << 4),
QEMU_ARCH_MICROBLAZE = (1 << 6),
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index aa32782405..0933d62db8 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -667,7 +667,7 @@ build-without-defaults:
--disable-pie
--disable-qom-cast-debug
--disable-strip
- TARGETS: alpha-softmmu avr-softmmu cris-softmmu hppa-softmmu m68k-softmmu
+ TARGETS: alpha-softmmu avr-softmmu hppa-softmmu m68k-softmmu
mips-softmmu mips64-softmmu mipsel-softmmu mips64el-softmmu
ppc-softmmu s390x-softmmu sh4-softmmu sh4eb-softmmu sparc-softmmu
sparc64-softmmu tricore-softmmu xtensa-softmmu xtensaeb-softmmu
diff --git a/.gitlab-ci.d/crossbuild-template.yml b/.gitlab-ci.d/crossbuild-template.yml
index 18ec5b6253..2ce0432eb7 100644
--- a/.gitlab-ci.d/crossbuild-template.yml
+++ b/.gitlab-ci.d/crossbuild-template.yml
@@ -20,7 +20,7 @@
- ccache --zero-stats
- ../configure --enable-werror --disable-docs --enable-fdt=system
--disable-user $QEMU_CONFIGURE_OPTS $EXTRA_CONFIGURE_OPTS
- --target-list-exclude="arm-softmmu cris-softmmu
+ --target-list-exclude="arm-softmmu
i386-softmmu microblaze-softmmu mips-softmmu mipsel-softmmu
mips64-softmmu ppc-softmmu riscv32-softmmu sh4-softmmu
sparc-softmmu xtensa-softmmu $CROSS_SKIP_TARGETS"
--
2.45.2
next prev parent reply other threads:[~2024-09-04 14:38 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-04 14:35 [PATCH v2 00/15] target/cris: Remove the deprecated CRIS target Philippe Mathieu-Daudé
2024-09-04 14:35 ` [PATCH v2 01/15] tests/tcg: Remove CRIS libc test files Philippe Mathieu-Daudé
2024-09-04 14:47 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 02/15] tests/tcg: Remove CRIS bare " Philippe Mathieu-Daudé
2024-09-04 14:41 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 03/15] buildsys: Remove CRIS cross container Philippe Mathieu-Daudé
2024-09-04 14:43 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 04/15] linux-user: Remove support for CRIS target Philippe Mathieu-Daudé
2024-09-04 14:45 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 05/15] hw/cris: Remove the axis-dev88 machine Philippe Mathieu-Daudé
2024-09-04 15:26 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 06/15] hw/cris: Remove image loader helper Philippe Mathieu-Daudé
2024-09-04 15:28 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 07/15] hw/intc: Remove TYPE_ETRAX_FS_PIC device Philippe Mathieu-Daudé
2024-09-04 15:31 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 08/15] hw/char: Remove TYPE_ETRAX_FS_SERIAL device Philippe Mathieu-Daudé
2024-09-04 15:45 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 09/15] hw/net: Remove TYPE_ETRAX_FS_ETH device Philippe Mathieu-Daudé
2024-09-04 16:04 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 10/15] hw/dma: Remove ETRAX_FS DMA device Philippe Mathieu-Daudé
2024-09-04 16:05 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 11/15] hw/timer: Remove TYPE_ETRAX_FS_TIMER device Philippe Mathieu-Daudé
2024-09-04 16:07 ` Thomas Huth
2024-09-04 14:36 ` Philippe Mathieu-Daudé [this message]
2024-09-04 16:08 ` [PATCH v2 12/15] system: Remove support for CRIS target Thomas Huth
2024-09-04 14:36 ` [PATCH v2 13/15] target/cris: Remove the deprecated " Philippe Mathieu-Daudé
2024-09-04 16:13 ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 14/15] disas: Remove CRIS disassembler Philippe Mathieu-Daudé
2024-09-04 16:15 ` Thomas Huth
2024-09-05 1:30 ` Richard Henderson
2024-09-05 10:42 ` Philippe Mathieu-Daudé
2024-09-04 14:36 ` [PATCH v2 15/15] seccomp: Remove check for CRIS host Philippe Mathieu-Daudé
2024-09-04 16:18 ` Thomas Huth
2024-09-05 7:48 ` Paolo Bonzini
2024-09-05 10:43 ` Philippe Mathieu-Daudé
2024-09-05 1:31 ` [PATCH v2 00/15] target/cris: Remove the deprecated CRIS target Richard Henderson
2024-09-09 13:24 ` Philippe Mathieu-Daudé
2024-09-09 13:59 ` Edgar E. Iglesias
2024-09-09 14:14 ` Philippe Mathieu-Daudé
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=20240904143603.52934-13-philmd@linaro.org \
--to=philmd@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=devel@lists.libvirt.org \
--cc=edgar.iglesias@gmail.com \
--cc=laurent@vivier.eu \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=thuth@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).