From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56127) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bP1KW-0004xd-Ru for qemu-devel@nongnu.org; Mon, 18 Jul 2016 01:43:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bP1KR-000871-7r for qemu-devel@nongnu.org; Mon, 18 Jul 2016 01:42:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38802) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bP1KR-00086x-1s for qemu-devel@nongnu.org; Mon, 18 Jul 2016 01:42:55 -0400 References: <1468377748-4661-1-git-send-email-jasowang@redhat.com> From: Jason Wang Message-ID: <578C6C59.80106@redhat.com> Date: Mon, 18 Jul 2016 13:42:49 +0800 MIME-Version: 1.0 In-Reply-To: <1468377748-4661-1-git-send-email-jasowang@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] e1000e: fix building without CONFIG_VMXNET3_PCI List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Dmitry Fleytman , Leonid Bloch On 2016=E5=B9=B407=E6=9C=8813=E6=97=A5 10:42, Jason Wang wrote: > e1000e needs net_tx_pkt.o and net_rx_pkt.o too. > > Cc: Dmitry Fleytman > Cc: Leonid Bloch > Signed-off-by: Jason Wang > --- > hw/net/Makefile.objs | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/hw/net/Makefile.objs b/hw/net/Makefile.objs > index fe61e9f..610ed3e 100644 > --- a/hw/net/Makefile.objs > +++ b/hw/net/Makefile.objs > @@ -7,6 +7,7 @@ common-obj-$(CONFIG_EEPRO100_PCI) +=3D eepro100.o > common-obj-$(CONFIG_PCNET_PCI) +=3D pcnet-pci.o > common-obj-$(CONFIG_PCNET_COMMON) +=3D pcnet.o > common-obj-$(CONFIG_E1000_PCI) +=3D e1000.o e1000x_common.o > +common-obj-$(CONFIG_E1000E_PCI) +=3D net_tx_pkt.o net_rx_pkt.o > common-obj-$(CONFIG_E1000E_PCI) +=3D e1000e.o e1000e_core.o e1000x_co= mmon.o > common-obj-$(CONFIG_RTL8139_PCI) +=3D rtl8139.o > common-obj-$(CONFIG_VMXNET3_PCI) +=3D net_tx_pkt.o net_rx_pkt.o Applied, thanks.