From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51643) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h39F9-0006tw-Rg for qemu-devel@nongnu.org; Sun, 10 Mar 2019 20:56:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h39F9-00072x-5M for qemu-devel@nongnu.org; Sun, 10 Mar 2019 20:56:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44514) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h39F8-00072V-SX for qemu-devel@nongnu.org; Sun, 10 Mar 2019 20:56:39 -0400 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 11 Mar 2019 01:56:12 +0100 Message-Id: <20190311005618.19007-2-philmd@redhat.com> In-Reply-To: <20190311005618.19007-1-philmd@redhat.com> References: <20190311005618.19007-1-philmd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v3 1/7] hw/mips: Express dependencies of the MIPSsim machine with Kconfig List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thomas Huth , Paolo Bonzini , qemu-devel@nongnu.org Cc: James Hogan , Yang Zhong , Aleksandar Markovic , Aleksandar Rikalo , Paul Burton , Aurelien Jarno , =?UTF-8?q?Herv=C3=A9=20Poussineau?= , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= The MIPSsim machine only emulates an 8250 UART and a simple network controller, connected via an ISA bus. Reviewed-by: Thomas Huth Signed-off-by: Philippe Mathieu-Daud=C3=A9 --- default-configs/mips-softmmu-common.mak | 1 - hw/mips/Kconfig | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/default-configs/mips-softmmu-common.mak b/default-configs/mi= ps-softmmu-common.mak index 0795d522db..8c5fdf5ee1 100644 --- a/default-configs/mips-softmmu-common.mak +++ b/default-configs/mips-softmmu-common.mak @@ -26,7 +26,6 @@ CONFIG_PIIX4=3Dy CONFIG_IDE_ISA=3Dy CONFIG_IDE_PIIX=3Dy CONFIG_NE2000_ISA=3Dy -CONFIG_MIPSNET=3Dy CONFIG_PFLASH_CFI01=3Dy CONFIG_I8259=3Dy CONFIG_MC146818RTC=3Dy diff --git a/hw/mips/Kconfig b/hw/mips/Kconfig index cdc07e59b6..3433e97e1a 100644 --- a/hw/mips/Kconfig +++ b/hw/mips/Kconfig @@ -6,6 +6,9 @@ config MALTA =20 config MIPSSIM bool + select ISA_BUS + select SERIAL_ISA + select MIPSNET =20 config JAZZ bool --=20 2.20.1