On Tue, 22 Mar 2011, Alexander Graf wrote:
On 03/22/2011 04:40 PM, Alexander Graf wrote:
make[1]: *** [qemu-system-x86_64] Error 1
This should be the correct fix:
diff --git a/Makefile.target b/Makefile.target
index c0db745..91bbf39 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -212,10 +212,11 @@ endif
# xen backend driver support
obj-i386-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
-ifeq ($(TARGET_ARCH), i386)
-CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y)
+ifeq ($(TARGET_BASE_ARCH),i386)
+ CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y)
with 's/KVM/XEN/g'
;)
else
-CONFIG_NO_XEN = y
+ CONFIG_XEN =
+ CONFIG_NO_XEN = y
endif
# xen support
CONFIG_NO_XEN_MAPCACHE = $(if $(subst n,,$(CONFIG_XEN_MAPCACHE)),n,y)
Yep, this is the fix.
Could you use this fix and continue to review ? or did I need to resend
the all patch series ?