From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Rostedt Subject: [RFC/PATCH LGUEST X86_64 10/13] dont compile in the lguest_net Date: Thu, 08 Mar 2007 12:39:10 -0500 Message-ID: <1173375550.32170.12.camel@localhost.localdomain> References: <20070308162348.299676000@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: virtualization-bounces@lists.osdl.org Errors-To: virtualization-bounces@lists.osdl.org To: virtualization@lists.osdl.org Cc: Chris Wright , Ingo Molnar List-Id: virtualization@lists.linuxfoundation.org plain text document attachment (lguest64-not-net.patch) Right now we don't have lguest_net compiling for x86_64. So turn it off for us. Signed-off-by: Steven Rostedt Cc: Glauber de Oliveira Costa Cc: Chris Wright Index: work-pv/drivers/net/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- work-pv.orig/drivers/net/Makefile +++ work-pv/drivers/net/Makefile @@ -217,4 +217,6 @@ obj-$(CONFIG_NETCONSOLE) +=3D netconsole.o obj-$(CONFIG_FS_ENET) +=3D fs_enet/ = obj-$(CONFIG_NETXEN_NIC) +=3D netxen/ +ifneq ($(CONFIG_X86_64),y) obj-$(CONFIG_LGUEST_GUEST) +=3D lguest_net.o +endif --