From nobody Fri May 3 13:45:02 2024 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1508172883590302.8119757703448; Mon, 16 Oct 2017 09:54:43 -0700 (PDT) Received: from localhost ([::1]:34124 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e48f2-0003Ke-FZ for importer@patchew.org; Mon, 16 Oct 2017 12:54:40 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35107) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e48Dk-00077L-6z for qemu-devel@nongnu.org; Mon, 16 Oct 2017 12:26:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e48Dh-0000ud-1n for qemu-devel@nongnu.org; Mon, 16 Oct 2017 12:26:28 -0400 Received: from edge10.ethz.ch ([82.130.75.186]:11219) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e48Dg-0000se-QM for qemu-devel@nongnu.org; Mon, 16 Oct 2017 12:26:24 -0400 Received: from CAS11.d.ethz.ch (172.31.38.211) by edge10.ethz.ch (82.130.75.186) with Microsoft SMTP Server (TLS) id 14.3.361.1; Mon, 16 Oct 2017 18:04:35 +0200 Received: from lukis-ThinkPad.inf.ethz.ch (129.132.102.134) by mail.ethz.ch (172.31.38.211) with Microsoft SMTP Server (TLS) id 14.3.361.1; Mon, 16 Oct 2017 18:04:38 +0200 From: To: Date: Mon, 16 Oct 2017 18:03:36 +0200 Message-ID: <1508169816-5993-1-git-send-email-lukas.humbel@inf.ethz.ch> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [129.132.102.134] X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 [fuzzy] X-Received-From: 82.130.75.186 X-Mailman-Approved-At: Mon, 16 Oct 2017 12:52:12 -0400 Subject: [Qemu-devel] [PATCH] hw/pci: Add e1000e NIC as command line argument X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Marcel Apfelbaum , Lukas Humbel , "Michael S. Tsirkin" Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_6 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Lukas Humbel Signed-off-by: Lukas Humbel --- hw/pci/pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/pci/pci.c b/hw/pci/pci.c index 1e6fb88..9d6cd04 100644 --- a/hw/pci/pci.c +++ b/hw/pci/pci.c @@ -1819,6 +1819,7 @@ static const char * const pci_nic_models[] =3D { "i82559er", "rtl8139", "e1000", + "e1000e", "pcnet", "virtio", "sungem", @@ -1832,6 +1833,7 @@ static const char * const pci_nic_names[] =3D { "i82559er", "rtl8139", "e1000", + "e1000e", "pcnet", "virtio-net-pci", "sungem", --=20 2.7.4