From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54599) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bICMt-00046d-8k for qemu-devel@nongnu.org; Wed, 29 Jun 2016 06:05:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bICMr-0003CR-5L for qemu-devel@nongnu.org; Wed, 29 Jun 2016 06:05:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57303) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bICMr-0003CM-0P for qemu-devel@nongnu.org; Wed, 29 Jun 2016 06:05:13 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (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 919486333D for ; Wed, 29 Jun 2016 10:05:12 +0000 (UTC) From: Gerd Hoffmann Date: Wed, 29 Jun 2016 12:05:00 +0200 Message-Id: <1467194704-28047-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1467194704-28047-1-git-send-email-kraxel@redhat.com> References: <1467194704-28047-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 2/6] ipxe: add e1000e 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 7bd1252..e8133fe 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -1,11 +1,13 @@ vgabios_variants := stdvga cirrus vmware qxl isavga virtio vgabios_targets := $(subst -isavga,,$(patsubst %,vgabios-%.bin,$(vgabios_variants))) -pxerom_variants := e1000 eepro100 ne2k_pci pcnet rtl8139 virtio -pxerom_targets := 8086100e 80861209 10500940 10222000 10ec8139 1af41000 +pxerom_variants := e1000 e1000e eepro100 ne2k_pci pcnet rtl8139 virtio +pxerom_targets := 8086100e 808610d3 80861209 10500940 10222000 10ec8139 1af41000 pxe-rom-e1000 efi-rom-e1000 : VID := 8086 pxe-rom-e1000 efi-rom-e1000 : DID := 100e +pxe-rom-e1000e efi-rom-e1000e : VID := 8086 +pxe-rom-e1000e efi-rom-e1000e : DID := 10d3 pxe-rom-eepro100 efi-rom-eepro100 : VID := 8086 pxe-rom-eepro100 efi-rom-eepro100 : DID := 1209 pxe-rom-ne2k_pci efi-rom-ne2k_pci : VID := 1050 -- 1.8.3.1