search for: target_subarch

Displaying 7 results from an estimated 7 matches for "target_subarch".

2013 Jul 12
14
[PATCH] xen: arm: make zImage the default target which we install
...@linaro.org> --- xen/arch/arm/Makefile | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/xen/arch/arm/Makefile b/xen/arch/arm/Makefile index 87fabe1..0fba75c 100644 --- a/xen/arch/arm/Makefile +++ b/xen/arch/arm/Makefile @@ -40,20 +40,15 @@ endif ALL_OBJS := $(TARGET_SUBARCH)/head.o $(ALL_OBJS) -$(TARGET): $(TARGET)-syms $(TARGET).bin +$(TARGET): $(TARGET)-syms $(TARGET).axf + $(OBJCOPY) -O binary -S $< $@ + +$(TARGET).axf: $(TARGET)-syms # XXX: VE model loads by VMA so instead of # making a proper ELF we link with LMA == VMA and adjust crudely $(OBJCOPY) --...
2006 Oct 17
0
[PATCH] Build fix for Solaris sed.
...cfb00b29a10b0baeabd Build fix for Solaris sed. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/xen/Rules.mk b/xen/Rules.mk --- a/xen/Rules.mk +++ b/xen/Rules.mk @@ -24,9 +24,11 @@ override COMPILE_SUBARCH := $(XEN_COMPIL override COMPILE_SUBARCH := $(XEN_COMPILE_ARCH) override TARGET_SUBARCH := $(XEN_TARGET_ARCH) override COMPILE_ARCH := $(shell echo $(XEN_COMPILE_ARCH) | \ - sed -e ''s/\(x86\|powerpc\).*/\1/'') + sed -e ''s/x86.*/x86/'' \ + -e ''s/pow...
2007 Jun 27
0
[PATCH 1/10] Provide basic Xen PM infrastructure
...: .long 0 +saved_cr3: .long 0 + +#endif diff -r 9261686d840c xen/arch/x86/boot/Makefile --- a/xen/arch/x86/boot/Makefile Tue Jun 26 12:40:37 2007 +0100 +++ b/xen/arch/x86/boot/Makefile Tue Jun 26 20:28:13 2007 -0400 @@ -1,3 +1,3 @@ obj-y += head.o obj-y += head.o -head.o: head.S $(TARGET_SUBARCH).S trampoline.S mem.S video.S cmdline.S edd.S +head.o: head.S $(TARGET_SUBARCH).S trampoline.S mem.S video.S cmdline.S edd.S wakeup.S diff -r 9261686d840c xen/arch/x86/boot/head.S --- a/xen/arch/x86/boot/head.S Tue Jun 26 12:40:37 2007 +0100 +++ b/xen/arch/x86/boot/head.S Tue Jun 26 20:28:13 2007 -...
2004 Dec 03
5
xen 2.0/2.0.1 reboots silently on via C3-cpu
On my lex mainboard with a Via C3 cpu, xen 2.0(.1) reboots (nearly) immediately without any outputs. The same setup/version boots without problems on a via epia M board with a Via C3-2 cpu (Nehemia), having a rather different chipset. Starting with option noreboot, nobiostables doesn''t change anything visible. Is this a known problem? Or just a knowingly unsupported chipset? Have you
2013 May 30
9
[PATCH v2 0/2] Implement VFP context switch for arm32
Hello, This is the second version of this patch series. I only implement the VPF context switch support for arm32 and add dummy function to avoid compilation on arm64. I have switched the order of the patch because the old second one can be applied alone and the patch are cleaner :). For all the changes see each patch. Cheers, Julien Grall (2): xen/arm: don''t enable VFP on XEN
2013 Jan 23
132
[PATCH 00/45] initial arm v8 (64-bit) support
First off, Apologies for the massive patch series... This series boots a 32-bit dom0 kernel to a command prompt on an ARMv8 (AArch64) model. The kernel is the same one as I am currently using with the 32 bit hypervisor I haven''t yet tried starting a guest or anything super advanced like that ;-). Also there is not real support for 64-bit domains at all, although in one or two places I
2013 Feb 22
48
[PATCH v3 00/46] initial arm v8 (64-bit) support
This round implements all of the review comments from V2 and all patches are now acked. Unless there are any objections I intend to apply later this morning. Ian.