From patchwork Sun Feb 14 16:16:14 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 45329 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B480BB7CB9 for ; Mon, 15 Feb 2010 04:16:06 +1100 (EST) Received: from localhost ([127.0.0.1]:51308 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NghGw-0007cc-3M for incoming@patchwork.ozlabs.org; Sun, 14 Feb 2010 11:24:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ngh9b-0005yQ-Qt for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:03 -0500 Received: from [199.232.76.173] (port=43060 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ngh9b-0005yI-8e for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:03 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Ngh9a-00022y-0w for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:03 -0500 Received: from moutng.kundenserver.de ([212.227.17.9]:58412) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ngh9Z-00022l-96 for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:01 -0500 Received: from flocke.weilnetz.de (p54ADCA6B.dip.t-dialin.net [84.173.202.107]) by mrelayeu.kundenserver.de (node=mrbap2) with ESMTP (Nemesis) id 0MZwSd-1NOu5D0nlf-00LID9; Sun, 14 Feb 2010 17:17:00 +0100 Received: from stefan by flocke.weilnetz.de with local (Exim 4.71) (envelope-from ) id 1Ngh9N-0005Um-BO; Sun, 14 Feb 2010 17:16:49 +0100 From: Stefan Weil To: QEMU Developers Date: Sun, 14 Feb 2010 17:16:14 +0100 Message-Id: <1266164189-21062-5-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.6.6.1 In-Reply-To: <1266164189-21062-4-git-send-email-weil@mail.berlios.de> References: <4B7821AC.6080400@mail.berlios.de> <1266164189-21062-1-git-send-email-weil@mail.berlios.de> <1266164189-21062-2-git-send-email-weil@mail.berlios.de> <1266164189-21062-3-git-send-email-weil@mail.berlios.de> <1266164189-21062-4-git-send-email-weil@mail.berlios.de> X-Provags-ID: V01U2FsdGVkX18WAACv9+0VigHvxhxehOOf5eJYDy1kOtapXih V1XaWaLDSysJUTmYTygNuyDOo5ov793nkgrEjR8ZkobiKVQN90 xv1G6NNQ/Et95qH+LGr1GIZddUlIk1XR86XwcSIwesODWaVKZV vKw== X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 05/20] eepro100: Add all supported devices to pci.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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",