From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NmZoA-0004PP-2F for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:14 -0500 Received: from [199.232.76.173] (port=46552 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NmZo9-0004PH-PQ for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:13 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NmZo8-0004uY-0d for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:13 -0500 Received: from moutng.kundenserver.de ([212.227.126.186]:62517) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NmZo7-0004uS-HY for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:11 -0500 From: Stefan Weil Date: Tue, 2 Mar 2010 22:37:45 +0100 Message-Id: <1267565880-18382-5-git-send-email-weil@mail.berlios.de> In-Reply-To: <4B7821AC.6080400@mail.berlios.de> References: <4B7821AC.6080400@mail.berlios.de> Subject: [Qemu-devel] [PATCHv3 05/20] eepro100: Add all supported devices to pci.c List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Cc: mst@redhat.com All eepro100 devices work with drivers which only use basic features. They were tested with gpxe boot. Signed-off-by: Stefan Weil --- hw/pci.c | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/hw/pci.c b/hw/pci.c index eb2043e..1ba3f92 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -1436,9 +1436,18 @@ void do_pci_info(Monitor *mon, QObject **ret_data) static const char * const pci_nic_models[] = { "ne2k_pci", + "i82550", "i82551", + "i82557a", "i82557b", + "i82557c", + "i82558a", + "i82558b", + "i82559a", + "i82559b", + "i82559c", "i82559er", + "i82562", "rtl8139", "e1000", "pcnet", @@ -1448,9 +1457,18 @@ static const char * const pci_nic_models[] = { static const char * const pci_nic_names[] = { "ne2k_pci", + "i82550", "i82551", + "i82557a", "i82557b", + "i82557c", + "i82558a", + "i82558b", + "i82559a", + "i82559b", + "i82559c", "i82559er", + "i82562", "rtl8139", "e1000", "pcnet", -- 1.7.0