WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] I found several build issues, mostly related to building

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] I found several build issues, mostly related to building outside of the
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 01 Jul 2005 11:50:13 -0400
Delivery-date: Fri, 01 Jul 2005 15:50:50 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID e041c8e75863c9e260d553fc5306f7d51500bdf8
# Parent  374ff557a88fc0e7a4991dec4f36db31adf5ad2f

I found several build issues, mostly related to building outside of the
source tree. Below/attached adjustments for these.
Signed-off-by: Jan Beulich <JBeulich@xxxxxxxxxx>

diff -r 374ff557a88f -r e041c8e75863 
linux-2.6.11-xen-sparse/arch/xen/x86_64/pci/Makefile
--- a/linux-2.6.11-xen-sparse/arch/xen/x86_64/pci/Makefile      Fri Jul  1 
15:48:47 2005
+++ b/linux-2.6.11-xen-sparse/arch/xen/x86_64/pci/Makefile      Fri Jul  1 
15:49:43 2005
@@ -8,34 +8,31 @@
 
 CFLAGS += -Iarch/i386/pci
 
-c-obj-y                := i386.o
-c-obj-y                += fixup.o
-c-obj-$(CONFIG_ACPI_PCI)       += acpi.o
-c-obj-y                        += legacy.o common.o
-c-obj-$(CONFIG_PCI_DIRECT)+= direct.o
+c-i386-obj-y           := i386.o
+c-i386-obj-y           += fixup.o
+c-i386-obj-$(CONFIG_ACPI_PCI)  += acpi.o
+c-i386-obj-y                   += legacy.o common.o
+c-i386-obj-$(CONFIG_PCI_DIRECT)+= direct.o
 c-xen-obj-y            += irq.o
 # mmconfig has a 64bit special
 c-obj-$(CONFIG_PCI_MMCONFIG) += mmconfig.o
 
 c-obj-$(CONFIG_NUMA)   += k8-bus.o
 
-c-direct-y += ../../i386/pci/direct.o
-c-acpi-y   += ../../i386/pci/acpi.o
-c-legacy-y += ../../i386/pci/legacy.o
-c-irq-y    += ../../i386/pci/irq.o
-c-common-y += ../../i386/pci/common.o
-c-fixup-y  += ../../i386/pci/fixup.o
-c-i386-y  += ../../i386/pci/i386.o
-
 c-link :=
 
-$(patsubst %.o,$(obj)/%.c,$(c-xen-obj-y) $(c-link)):
+$(patsubst %.o,$(obj)/%.c,$(c-xen-obj-y)):
        @ln -fsn $(srctree)/arch/xen/i386/pci/$(notdir $@) $@
 
 $(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-link)):
+       @ln -fsn $(srctree)/arch/x86_64/pci/$(notdir $@) $@
+
+$(patsubst %.o,$(obj)/%.c,$(c-i386-obj-y)):
        @ln -fsn $(srctree)/arch/i386/pci/$(notdir $@) $@
 
-obj-y  += $(c-obj-y)
+obj-y  += $(c-i386-obj-y) $(c-obj-y)
 obj-y  += $(c-xen-obj-y)
 
 clean-files += $(patsubst %.o,%.c,$(c-obj-y) $(c-obj-) $(c-link))
+clean-files += $(patsubst %.o,%.c,$(c-i386-obj-y) $(c-i386-obj-))
+clean-files += $(patsubst %.o,%.c,$(c-xen-obj-y) $(c-xen-obj-))
diff -r 374ff557a88f -r e041c8e75863 
linux-2.6.11-xen-sparse/arch/xen/x86_64/kernel/Makefile
--- a/linux-2.6.11-xen-sparse/arch/xen/x86_64/kernel/Makefile   Fri Jul  1 
15:48:47 2005
+++ b/linux-2.6.11-xen-sparse/arch/xen/x86_64/kernel/Makefile   Fri Jul  1 
15:49:43 2005
@@ -22,7 +22,7 @@
 #obj-$(CONFIG_X86_MCE)         += mce.o
 #obj-$(CONFIG_MTRR)            += ../../i386/kernel/cpu/mtrr/
 obj-$(CONFIG_ACPI_BOOT)                += acpi/
-obj-$(CONFIG_X86_MSR)          += msr.o
+c-obj-$(CONFIG_X86_MSR)                += msr.o
 obj-$(CONFIG_MICROCODE)                += microcode.o
 obj-$(CONFIG_X86_CPUID)                += cpuid.o
 #obj-$(CONFIG_SMP)             += smp.o smpboot.o trampoline.o
@@ -55,13 +55,14 @@
 c-link := init_task.o
 s-link := vsyscall.o 
 
-$(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-link)) $(patsubst 
%.o,$(obj)/%.S,$(s-obj-y) $(s-link)):
-       ln -fsn $(srctree)/arch/x86_64/kernel/$(notdir $@) $@
+$(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-obj-m) $(c-link)) $(patsubst 
%.o,$(obj)/%.S,$(s-obj-y) $(s-link)):
+       @ln -fsn $(srctree)/arch/x86_64/kernel/$(notdir $@) $@
 
 $(patsubst %.o,$(obj)/%.c,$(i386-obj-y)):
-       ln -fsn $(srctree)/arch/xen/i386/kernel/$(notdir $@) $@
+       @ln -fsn $(srctree)/arch/xen/i386/kernel/$(notdir $@) $@
 
 obj-y  += $(c-obj-y) $(s-obj-y) $(i386-obj-y)
+obj-m  += $(c-obj-m)
 
-clean-files += $(patsubst %.o,%.c,$(c-obj-y) $(c-obj-) $(c-link) $(i386-obj-y))
+clean-files += $(patsubst %.o,%.c,$(c-obj-y) $(c-obj-m) $(c-obj-) $(c-link) 
$(i386-obj-y))
 clean-files += $(patsubst %.o,%.S,$(s-obj-y) $(s-obj-) $(s-link))
diff -r 374ff557a88f -r e041c8e75863 
linux-2.6.11-xen-sparse/arch/xen/i386/kernel/Makefile
--- a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/Makefile     Fri Jul  1 
15:48:47 2005
+++ b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/Makefile     Fri Jul  1 
15:49:43 2005
@@ -84,12 +84,13 @@
 c-link := init_task.o
 s-link := vsyscall-int80.o vsyscall-sysenter.o vsyscall-sigreturn.o 
vsyscall.lds.o
 
-$(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-link)) $(patsubst 
%.o,$(obj)/%.S,$(s-obj-y) $(s-link)):
+$(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-obj-m) $(c-link)) $(patsubst 
%.o,$(obj)/%.S,$(s-obj-y) $(s-link)):
        @ln -fsn $(srctree)/arch/i386/kernel/$(notdir $@) $@
 
 $(obj)/vsyscall-int80.S: $(obj)/vsyscall-sigreturn.S
 
 obj-y  += $(c-obj-y) $(s-obj-y)
+obj-m  += $(c-obj-m)
 
-clean-files += $(patsubst %.o,%.c,$(c-obj-y) $(c-obj-) $(c-link))
+clean-files += $(patsubst %.o,%.c,$(c-obj-y) $(c-obj-m) $(c-obj-) $(c-link))
 clean-files += $(patsubst %.o,%.S,$(s-obj-y) $(s-obj-) $(s-link))
diff -r 374ff557a88f -r e041c8e75863 
linux-2.6.11-xen-sparse/arch/xen/x86_64/kernel/acpi/Makefile
--- a/linux-2.6.11-xen-sparse/arch/xen/x86_64/kernel/acpi/Makefile      Fri Jul 
 1 15:48:47 2005
+++ b/linux-2.6.11-xen-sparse/arch/xen/x86_64/kernel/acpi/Makefile      Fri Jul 
 1 15:49:43 2005
@@ -1,14 +1,18 @@
 i386-obj-$(CONFIG_ACPI_BOOT)           := boot.o
 c-obj-$(CONFIG_X86_IO_APIC)            := earlyquirk.o
-c-obj-$(CONFIG_ACPI_SLEEP)             += sleep.o wakeup.o
+c-obj-$(CONFIG_ACPI_SLEEP)             += sleep.o
+s-obj-$(CONFIG_ACPI_SLEEP)             += wakeup.o
 
 c-link                                  :=
 
 $(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-link)):
        @ln -fsn $(srctree)/arch/i386/kernel/acpi/$(notdir $@) $@
 
+$(patsubst %.o,$(obj)/%.S,$(s-obj-y) $(s-link)):
+       @ln -fsn $(srctree)/arch/x86_64/kernel/acpi/$(notdir $@) $@
+
 $(patsubst %.o,$(obj)/%.c,$(i386-obj-y)):
-       ln -fsn $(srctree)/arch/xen/i386/kernel/acpi/$(notdir $@) $@
+       @ln -fsn $(srctree)/arch/xen/i386/kernel/acpi/$(notdir $@) $@
 
 obj-y  += $(c-obj-y) $(s-obj-y) $(i386-obj-y)
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] I found several build issues, mostly related to building outside of the, Xen patchbot -unstable <=