]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw/ppc/pegasos2: Rename to pegasos
authorBALATON Zoltan <balaton@eik.bme.hu>
Fri, 24 Oct 2025 23:31:15 +0000 (01:31 +0200)
committerHarsh Prateek Bora <harshpb@linux.ibm.com>
Thu, 30 Oct 2025 08:10:38 +0000 (13:40 +0530)
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 <balaton@eik.bme.hu>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Harsh Prateek Bora <harshpb@linux.ibm.com>
Link: https://lore.kernel.org/r/275cd2d5074b76b4a504a01f658e85ed7994ea3e.1761346145.git.balaton@eik.bme.hu
Message-ID: <275cd2d5074b76b4a504a01f658e85ed7994ea3e.1761346145.git.balaton@eik.bme.hu>

MAINTAINERS
configs/devices/ppc-softmmu/default.mak
hw/ppc/Kconfig
hw/ppc/meson.build
hw/ppc/pegasos.c [moved from hw/ppc/pegasos2.c with 100% similarity]

index 0a620ba87c850e0d33718508261ae347607a673f..8063eefa2a5aa37bc61306768af122f8712d48d4 100644 (file)
@@ -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 <balaton@eik.bme.hu>
 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
index 460d15e676b770eacb5d5f5e6a9681d04b3f51f1..180ae31e2d6063c75bb58ac71e256904c6e516ce 100644 (file)
 # 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
index 7091d72fd88f876f2ff65a28b4409d84577da332..347dcce69054e717dbcb4008e201ac41bcb09669 100644 (file)
@@ -92,7 +92,7 @@ config AMIGAONE
     select VT82C686
     select SMBUS_EEPROM
 
-config PEGASOS2
+config PEGASOS
     bool
     default y
     depends on PPC
index 6b7c1f4f49fb4612278d4193bd46f070f1e8db2a..f7dac87a2a4828ad746fa7e2661df723f009b51a 100644 (file)
@@ -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'))
similarity index 100%
rename from hw/ppc/pegasos2.c
rename to hw/ppc/pegasos.c