Steven Rostedt
2007-Apr-18 13:02 UTC
[RFC/PATCH LGUEST X86_64 10/13] dont compile in the lguest_net
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 <srostedt@redhat.com> Cc: Glauber de Oliveira Costa <glommer@gmail.com> Cc: Chris Wright <chrisw@sous-sol.org> Index: work-pv/drivers/net/Makefile ==================================================================--- work-pv.orig/drivers/net/Makefile +++ work-pv/drivers/net/Makefile @@ -217,4 +217,6 @@ obj-$(CONFIG_NETCONSOLE) += netconsole.o obj-$(CONFIG_FS_ENET) += fs_enet/ obj-$(CONFIG_NETXEN_NIC) += netxen/ +ifneq ($(CONFIG_X86_64),y) obj-$(CONFIG_LGUEST_GUEST) += lguest_net.o +endif --