On 25/02/2026 17.33, Philippe Mathieu-Daudé wrote:
Hi Thomas,
On 25/2/26 17:18, Thomas Huth wrote:
From: Thomas Huth <thuth@redhat.com>
It's been deprecated since two releases, so it should be fine to remove this now. Users can use the qemu-system-microblaze binary instead that can handle both endiannesses now.
Signed-off-by: Thomas Huth <thuth@redhat.com> --- MAINTAINERS | 4 ++-- docs/about/deprecated.rst | 13 ------------- docs/about/removed-features.rst | 14 ++++++++++++++ configs/devices/microblazeel-softmmu/default.mak | 6 ------ configs/targets/microblazeel-softmmu.mak | 6 ------ qapi/machine.json | 2 +- tests/tcg/plugins/syscall.c | 1 - 7 files changed, 17 insertions(+), 29 deletions(-) delete mode 100644 configs/devices/microblazeel-softmmu/default.mak delete mode 100644 configs/targets/microblazeel-softmmu.mak
diff --git a/tests/tcg/plugins/syscall.c b/tests/tcg/plugins/syscall.c index 5658f830879..624836dec62 100644 --- a/tests/tcg/plugins/syscall.c +++ b/tests/tcg/plugins/syscall.c @@ -40,7 +40,6 @@ static const struct SyscallInfo arch_syscall_info[] = { { "loongarch64", -1 }, { "m68k", 4 }, { "microblaze", 4 }, - { "microblazeel", 4 }, { "mips", 1 }, { "mips64", 1 }, { "mips64el", 1 },
Isn't this to test the qemu-microblazeel user-mode binary?
Oops, yes, I guess so ... so this hunk has to be removed from the patch, thanks for spotting it! Thomas