From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36055) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yzqby-0000XC-DG for qemu-devel@nongnu.org; Tue, 02 Jun 2015 14:08:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yzqbt-0005xw-Ef for qemu-devel@nongnu.org; Tue, 02 Jun 2015 14:08:26 -0400 Received: from smtp2-g21.free.fr ([2a01:e0c:1:1599::11]:11109) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yzqbt-0005wg-9W for qemu-devel@nongnu.org; Tue, 02 Jun 2015 14:08:21 -0400 Message-ID: <556DF03F.6040402@reactos.org> Date: Tue, 02 Jun 2015 20:04:47 +0200 From: =?ISO-8859-15?Q?Herv=E9_Poussineau?= MIME-Version: 1.0 References: <1432729200-5322-1-git-send-email-hpoussin@reactos.org> <1432729200-5322-2-git-send-email-hpoussin@reactos.org> <20150602110224.GA26298@aurel32.net> In-Reply-To: <20150602110224.GA26298@aurel32.net> Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 01/17] mips jazz: compile only in 64 bit little endian List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Leon Alrae Le 02/06/2015 13:02, Aurelien Jarno a =E9crit : > On 2015-05-27 14:19, Herv=E9 Poussineau wrote: >> Remove now useless device models from other MIPS configurations >> >> We're now compiling 18 files less than before. >> >> Signed-off-by: Herv=E9 Poussineau >> --- >> default-configs/mips-softmmu.mak | 5 ----- >> default-configs/mips64-softmmu.mak | 5 ----- >> default-configs/mips64el-softmmu.mak | 1 + >> default-configs/mipsel-softmmu.mak | 5 ----- >> hw/mips/Makefile.objs | 3 ++- >> hw/mips/mips_jazz.c | 5 ----- >> tests/endianness-test.c | 4 ---- >> 7 files changed, 3 insertions(+), 25 deletions(-) >> >> diff --git a/default-configs/mips-softmmu.mak b/default-configs/mips-s= oftmmu.mak >> index cce2c81..f62a21a 100644 >> --- a/default-configs/mips-softmmu.mak >> +++ b/default-configs/mips-softmmu.mak >> @@ -21,14 +21,9 @@ CONFIG_PIIX4=3Dy >> CONFIG_IDE_ISA=3Dy >> CONFIG_IDE_PIIX=3Dy >> CONFIG_NE2000_ISA=3Dy >> -CONFIG_RC4030=3Dy >> -CONFIG_DP8393X=3Dy >> -CONFIG_DS1225Y=3Dy >> CONFIG_MIPSNET=3Dy >> CONFIG_PFLASH_CFI01=3Dy >> -CONFIG_G364FB=3Dy >> CONFIG_I8259=3Dy >> -CONFIG_JAZZ_LED=3Dy >> CONFIG_MC146818RTC=3Dy >> CONFIG_ISA_TESTDEV=3Dy >> CONFIG_EMPTY_SLOT=3Dy >> diff --git a/default-configs/mips64-softmmu.mak b/default-configs/mips= 64-softmmu.mak >> index 7a88a08..accedca 100644 >> --- a/default-configs/mips64-softmmu.mak >> +++ b/default-configs/mips64-softmmu.mak >> @@ -21,14 +21,9 @@ CONFIG_PIIX4=3Dy >> CONFIG_IDE_ISA=3Dy >> CONFIG_IDE_PIIX=3Dy >> CONFIG_NE2000_ISA=3Dy >> -CONFIG_RC4030=3Dy >> -CONFIG_DP8393X=3Dy >> -CONFIG_DS1225Y=3Dy >> CONFIG_MIPSNET=3Dy >> CONFIG_PFLASH_CFI01=3Dy >> -CONFIG_G364FB=3Dy >> CONFIG_I8259=3Dy >> -CONFIG_JAZZ_LED=3Dy >> CONFIG_MC146818RTC=3Dy >> CONFIG_ISA_TESTDEV=3Dy >> CONFIG_EMPTY_SLOT=3Dy > > TTBOMK, MIPS Magnum machines are dual endian, so why remove the 64-bit > big endian version? > > On the other hand, I am all for removing the 32-bit versions. > Yes, MIPS Magnum are dual endian. However, they always start in little-en= dian mode, and firmware switches CPU to big-endian if required. If you prefer that I keep the 64 bit big-endian variant, I can do it. Regards, Herv=E9