From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45387) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDZTY-0008Cu-Hl for qemu-devel@nongnu.org; Tue, 20 Jan 2015 09:08:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YDZTV-0005qb-Ch for qemu-devel@nongnu.org; Tue, 20 Jan 2015 09:08:12 -0500 Received: from mx-v6.kamp.de ([2a02:248:0:51::16]:33136 helo=mx01.kamp.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDZTV-0005lr-1V for qemu-devel@nongnu.org; Tue, 20 Jan 2015 09:08:09 -0500 Message-ID: <54BE6144.4020108@kamp.de> Date: Tue, 20 Jan 2015 15:08:04 +0100 From: Peter Lieven MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Exposing different e1000 models through cmdline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: mst@redhat.com, Stefan Hajnoczi , "qemu-devel@nongnu.org" Hi, I found that vmware emulates a 82545em per default and so some special crafted appliances only work with that card. I was wondering if the below is the right approach to make the models selectable via cmdline without changing the default: diff --git a/hw/pci/pci.c b/hw/pci/pci.c index 371699c..632c4ba 100644 --- a/hw/pci/pci.c +++ b/hw/pci/pci.c @@ -1578,6 +1578,9 @@ static const char * const pci_nic_models[] = { "i82559er", "rtl8139", "e1000", + "e1000-82540em", + "e1000-82544gc", + "e1000-82545em", "pcnet", "virtio", NULL @@ -1590,6 +1593,9 @@ static const char * const pci_nic_names[] = { "i82559er", "rtl8139", "e1000", + "e1000-82540em", + "e1000-82544gc", + "e1000-82545em", "pcnet", "virtio-net-pci", NULL Thanks, Peter