From: BALATON Zoltan Date: Fri, 24 Oct 2025 23:31:15 +0000 (+0200) Subject: hw/ppc/pegasos2: Rename to pegasos X-Git-Tag: v10.2.0-rc1~31^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b943bb3ce928e29a5a80371cfb7e726996a947e0;p=thirdparty%2Fqemu.git hw/ppc/pegasos2: Rename to pegasos Now that we also emulate pegasos1 it is not only about pegasos2 so rename to a more generic name encompassing both. Signed-off-by: BALATON Zoltan Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Harsh Prateek Bora Link: https://lore.kernel.org/r/275cd2d5074b76b4a504a01f658e85ed7994ea3e.1761346145.git.balaton@eik.bme.hu Message-ID: <275cd2d5074b76b4a504a01f658e85ed7994ea3e.1761346145.git.balaton@eik.bme.hu> --- diff --git a/MAINTAINERS b/MAINTAINERS index 0a620ba87c8..8063eefa2a5 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1648,11 +1648,11 @@ F: roms/u-boot-sam460ex F: docs/system/ppc/amigang.rst F: tests/functional/ppc/test_sam460ex.py -pegasos2 +pegasos M: BALATON Zoltan L: qemu-ppc@nongnu.org S: Maintained -F: hw/ppc/pegasos2.c +F: hw/ppc/pegasos.c F: hw/pci-host/mv64361.c F: hw/pci-host/mv643xx.h F: include/hw/pci-host/mv64361.h diff --git a/configs/devices/ppc-softmmu/default.mak b/configs/devices/ppc-softmmu/default.mak index 460d15e676b..180ae31e2d6 100644 --- a/configs/devices/ppc-softmmu/default.mak +++ b/configs/devices/ppc-softmmu/default.mak @@ -13,15 +13,14 @@ # CONFIG_PPC440=n # CONFIG_VIRTEX=n -# For Sam460ex +# AmigaNG +# CONFIG_AMIGAONE=n +# CONFIG_PEGASOS=n # CONFIG_SAM460EX=n # For Macs # CONFIG_MAC_OLDWORLD=n # CONFIG_MAC_NEWWORLD=n -# CONFIG_AMIGAONE=n -# CONFIG_PEGASOS2=n - # For PReP # CONFIG_PREP=n diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index 7091d72fd88..347dcce6905 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -92,7 +92,7 @@ config AMIGAONE select VT82C686 select SMBUS_EEPROM -config PEGASOS2 +config PEGASOS bool default y depends on PPC diff --git a/hw/ppc/meson.build b/hw/ppc/meson.build index 6b7c1f4f49f..f7dac87a2a4 100644 --- a/hw/ppc/meson.build +++ b/hw/ppc/meson.build @@ -87,8 +87,8 @@ ppc_ss.add(when: 'CONFIG_E500', if_true: files( ppc_ss.add(when: 'CONFIG_VIRTEX', if_true: files('virtex_ml507.c')) # AmigaOne ppc_ss.add(when: 'CONFIG_AMIGAONE', if_true: files('amigaone.c')) -# Pegasos2 -ppc_ss.add(when: 'CONFIG_PEGASOS2', if_true: files('pegasos2.c')) +# Pegasos +ppc_ss.add(when: 'CONFIG_PEGASOS', if_true: files('pegasos.c')) ppc_ss.add(when: 'CONFIG_VOF', if_true: files('vof.c')) ppc_ss.add(when: ['CONFIG_VOF', 'CONFIG_PSERIES'], if_true: files('spapr_vof.c')) diff --git a/hw/ppc/pegasos2.c b/hw/ppc/pegasos.c similarity index 100% rename from hw/ppc/pegasos2.c rename to hw/ppc/pegasos.c