From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJxPH-0004Id-SJ for qemu-devel@nongnu.org; Mon, 04 Jul 2016 02:31:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJxPD-0000Fv-Kc for qemu-devel@nongnu.org; Mon, 04 Jul 2016 02:30:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJxPD-0000FL-F4 for qemu-devel@nongnu.org; Mon, 04 Jul 2016 02:30:55 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 85162C049D59 for ; Mon, 4 Jul 2016 06:30:54 +0000 (UTC) From: Gerd Hoffmann Date: Mon, 4 Jul 2016 08:30:44 +0200 Message-Id: <1467613849-12476-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1467613849-12476-1-git-send-email-kraxel@redhat.com> References: <1467613849-12476-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 3/8] ipxe: add vmxnet3 rom List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- roms/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roms/Makefile b/roms/Makefile index e8133fe..88b3709 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -1,8 +1,8 @@ vgabios_variants := stdvga cirrus vmware qxl isavga virtio vgabios_targets := $(subst -isavga,,$(patsubst %,vgabios-%.bin,$(vgabios_variants))) -pxerom_variants := e1000 e1000e eepro100 ne2k_pci pcnet rtl8139 virtio -pxerom_targets := 8086100e 808610d3 80861209 10500940 10222000 10ec8139 1af41000 +pxerom_variants := e1000 e1000e eepro100 ne2k_pci pcnet rtl8139 virtio vmxnet3 +pxerom_targets := 8086100e 808610d3 80861209 10500940 10222000 10ec8139 1af41000 15ad07b0 pxe-rom-e1000 efi-rom-e1000 : VID := 8086 pxe-rom-e1000 efi-rom-e1000 : DID := 100e @@ -18,6 +18,8 @@ pxe-rom-rtl8139 efi-rom-rtl8139 : VID := 10ec pxe-rom-rtl8139 efi-rom-rtl8139 : DID := 8139 pxe-rom-virtio efi-rom-virtio : VID := 1af4 pxe-rom-virtio efi-rom-virtio : DID := 1000 +pxe-rom-vmxnet3 efi-rom-vmxnet3 : VID := 15ad +pxe-rom-vmxnet3 efi-rom-vmxnet3 : DID := 07b0 # # cross compiler auto detection -- 1.8.3.1