Re: [PATCH] [PATCH] Move $(LIBS) on the end

2008-08-26 Thread Bernhard Walle
* Yinghai Lu [2008-08-26 01:21]: On Tue, Aug 26, 2008 at 1:16 AM, Bernhard Walle [EMAIL PROTECTED] wrote: 1 file changed, 1 insertion(+), 2 deletions(-) kexec/Makefile |3 +-- To make static compilation work with LDFLAGS=-static ./configure make thanks. can you put

[PATCH] Add INSTALL to tarball

2008-08-26 Thread Bernhard Walle
This patch just adds the installation file to the tarball. Signed-off-by: Bernhard Walle [EMAIL PROTECTED] --- Makefile.in |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.in b/Makefile.in index 341e170..f0621e1 100644 --- a/Makefile.in +++ b/Makefile.in @@

Re: [PATCH] [PATCH] Move $(LIBS) on the end

2008-08-26 Thread Bernhard Walle
* Yinghai Lu [2008-08-26 01:40]: On Tue, Aug 26, 2008 at 1:34 AM, Bernhard Walle [EMAIL PROTECTED] wrote: * Yinghai Lu [2008-08-26 01:21]: On Tue, Aug 26, 2008 at 1:16 AM, Bernhard Walle [EMAIL PROTECTED] wrote: 1 file changed, 1 insertion(+), 2 deletions(-) kexec/Makefile |3 +--

[PATCH 00/06] sh: Improved kexec support for SuperH

2008-08-26 Thread Magnus Damm
Here comes a few SuperH related patches. Trivial stuff - fixing up plain kexec support. Kdump is not ready yet. I also have have a few kdump changes in my local tree but they need more work. [PATCH 01/06] sh: Add support for sh4al-dsp processors [PATCH 02/06] sh: Get system memory ranges from

[PATCH 01/06] sh: Add support for sh4al-dsp processors

2008-08-26 Thread Magnus Damm
From: Magnus Damm [EMAIL PROTECTED] Add support for sh4al-dsp processors such as sh7722. Signed-off-by: Magnus Damm [EMAIL PROTECTED] --- kexec/arch/sh/kexec-sh.c |1 + 1 file changed, 1 insertion(+) --- 0001/kexec/arch/sh/kexec-sh.c +++ work/kexec/arch/sh/kexec-sh.c 2008-08-20

[PATCH 02/06] sh: Get system memory ranges from /proc/iomem

2008-08-26 Thread Magnus Damm
From: Magnus Damm [EMAIL PROTECTED] Parse contents of /proc/iomem instead of hardcoding RAM ranges. Signed-off-by: Magnus Damm [EMAIL PROTECTED] --- kexec/arch/sh/kexec-sh.c | 26 +++--- 1 file changed, 19 insertions(+), 7 deletions(-) --- 0002/kexec/arch/sh/kexec-sh.c

[PATCH 05/06] sh: Use dynamic zImage load address

2008-08-26 Thread Magnus Damm
From: Magnus Damm [EMAIL PROTECTED] Dynamically calculate SuperH zImage load address instead of hardcoding. Signed-off-by: Magnus Damm [EMAIL PROTECTED] --- kexec/arch/sh/kexec-zImage-sh.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) ---

[PATCH 06/06] sh: Add vmlinux support

2008-08-26 Thread Magnus Damm
From: Magnus Damm [EMAIL PROTECTED] Add SuperH vmlinux support through a zero-page aware elf loader. Only for kexec at this point, in the future kdump support will be added. Signed-off-by: Magnus Damm [EMAIL PROTECTED] --- kexec/arch/sh/Makefile |1 kexec/arch/sh/kexec-elf-sh.c |

[PATCH 04/06] sh: Autodetect zImage zero page address

2008-08-26 Thread Magnus Damm
From: Magnus Damm [EMAIL PROTECTED] Autodetect the zero page base address for zImages on SuperH. Signed-off-by: Magnus Damm [EMAIL PROTECTED] --- kexec/arch/sh/kexec-sh.c| 40 +++ kexec/arch/sh/kexec-sh.h|3 - kexec/arch/sh/kexec-zImage-sh.c | 79

Re: [PATCH] [PATCH] Move $(LIBS) on the end

2008-08-26 Thread Simon Horman
On Tue, Aug 26, 2008 at 10:16:49AM +0200, Bernhard Walle wrote: 1 file changed, 1 insertion(+), 2 deletions(-) kexec/Makefile |3 +-- To make static compilation work with LDFLAGS=-static ./configure make we have to move $(LIBS) on the end of the compiler line. Static

Re: [PATCH] Add INSTALL to tarball

2008-08-26 Thread Simon Horman
On Tue, Aug 26, 2008 at 11:03:43AM +0200, Bernhard Walle wrote: This patch just adds the installation file to the tarball. Thanks, applied. ___ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec

Re: [PATCH] Update INSTALL

2008-08-26 Thread Simon Horman
On Tue, Aug 26, 2008 at 11:11:59AM +0200, Bernhard Walle wrote: That patch should merge my accidentally written INSTALL file with that already present in the git tree. It adds following items: - static compilation - cross compilation And updates the instructions to build the

Re: [patch] fix compilation on arm

2008-08-26 Thread Simon Horman
On Sun, Aug 24, 2008 at 09:21:36PM +0200, Marc Kleine-Budde wrote: Hi, cross compilation to arm fails with toolchain based on recent new kernel headers, due to mussing asm/page.h, This patch fixes the problem. Thanks, applied. ___ kexec mailing

Re: [PATCH 06/06] sh: Add vmlinux support

2008-08-26 Thread Simon Horman
On Tue, Aug 26, 2008 at 08:12:32PM +0900, Magnus Damm wrote: From: Magnus Damm [EMAIL PROTECTED] Add SuperH vmlinux support through a zero-page aware elf loader. Only for kexec at this point, in the future kdump support will be added. Hi Magnus, If these series of patches are fine by you

Re: [PATCH 06/06] sh: Add vmlinux support

2008-08-26 Thread Magnus Damm
Hi Simon, On Wed, Aug 27, 2008 at 11:39 AM, Simon Horman [EMAIL PROTECTED] wrote: On Tue, Aug 26, 2008 at 08:12:32PM +0900, Magnus Damm wrote: From: Magnus Damm [EMAIL PROTECTED] Add SuperH vmlinux support through a zero-page aware elf loader. Only for kexec at this point, in the future