All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH,resend] sparc64: build compressed image (zImage) by default
@ 2009-07-16 18:41 ` Frans Pop
  0 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-16 18:41 UTC (permalink / raw)
  To: sparclinux; +Cc: linux-kbuild, Jurij Smakov, David Miller

From: Jurij Smakov <jurij@wooyd.org>
Subject: sparc64: build compressed image (zImage) by default

Besides creating the uncompressed vmlinux image for sparc64, also
create a compressed zImage. This is more consistent with other
architectures and required to make the 'deb-pkg' target work.

Signed-off-by: Jurij Smakov <jurij@wooyd.org>
Signed-off-by: Frans Pop <elendil@planet.nl>

---
The patch was taken from the Debian kernel package. It was written by
Jurij. I added his Signed-off-by with his permission.

The patch was tested to work during my recent tests for the cmd64x issue.

diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile
index 2003ded..2adc5ea 100644
--- a/arch/sparc/Makefile
+++ b/arch/sparc/Makefile
@@ -91,6 +91,9 @@ endif
 
 boot := arch/sparc/boot
 
+# Default target
+all: zImage
+
 image zImage tftpboot.img vmlinux.aout: vmlinux
 	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
 
diff --git a/arch/sparc/boot/Makefile b/arch/sparc/boot/Makefile
index 1ff0fd9..97e3feb 100644
--- a/arch/sparc/boot/Makefile
+++ b/arch/sparc/boot/Makefile
@@ -79,6 +79,9 @@ $(obj)/image: vmlinux FORCE
 	$(call if_changed,strip)
 	@echo '  kernel: $@ is ready'
 
+$(obj)/zImage: $(obj)/image
+	$(call if_changed,gzip)
+
 $(obj)/tftpboot.img: $(obj)/image $(obj)/piggyback_64 System.map $(ROOT_IMG) FORCE
 	$(call if_changed,elftoaout)
 	$(call if_changed,piggy)

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH,resend] sparc64: build compressed image (zImage) by default
@ 2009-07-16 18:41 ` Frans Pop
  0 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-16 18:41 UTC (permalink / raw)
  To: sparclinux; +Cc: linux-kbuild, Jurij Smakov, David Miller

From: Jurij Smakov <jurij@wooyd.org>
Subject: sparc64: build compressed image (zImage) by default

Besides creating the uncompressed vmlinux image for sparc64, also
create a compressed zImage. This is more consistent with other
architectures and required to make the 'deb-pkg' target work.

Signed-off-by: Jurij Smakov <jurij@wooyd.org>
Signed-off-by: Frans Pop <elendil@planet.nl>

---
The patch was taken from the Debian kernel package. It was written by
Jurij. I added his Signed-off-by with his permission.

The patch was tested to work during my recent tests for the cmd64x issue.

diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile
index 2003ded..2adc5ea 100644
--- a/arch/sparc/Makefile
+++ b/arch/sparc/Makefile
@@ -91,6 +91,9 @@ endif
 
 boot := arch/sparc/boot
 
+# Default target
+all: zImage
+
 image zImage tftpboot.img vmlinux.aout: vmlinux
 	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
 
diff --git a/arch/sparc/boot/Makefile b/arch/sparc/boot/Makefile
index 1ff0fd9..97e3feb 100644
--- a/arch/sparc/boot/Makefile
+++ b/arch/sparc/boot/Makefile
@@ -79,6 +79,9 @@ $(obj)/image: vmlinux FORCE
 	$(call if_changed,strip)
 	@echo '  kernel: $@ is ready'
 
+$(obj)/zImage: $(obj)/image
+	$(call if_changed,gzip)
+
 $(obj)/tftpboot.img: $(obj)/image $(obj)/piggyback_64 System.map $(ROOT_IMG) FORCE
 	$(call if_changed,elftoaout)
 	$(call if_changed,piggy)

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
  2009-07-16 18:41 ` Frans Pop
@ 2009-07-16 20:16   ` Sam Ravnborg
  -1 siblings, 0 replies; 18+ messages in thread
From: Sam Ravnborg @ 2009-07-16 20:16 UTC (permalink / raw)
  To: Frans Pop; +Cc: sparclinux, linux-kbuild, Jurij Smakov, David Miller

On Thu, Jul 16, 2009 at 08:41:52PM +0200, Frans Pop wrote:
> From: Jurij Smakov <jurij@wooyd.org>
> Subject: sparc64: build compressed image (zImage) by default
> 
> Besides creating the uncompressed vmlinux image for sparc64, also
> create a compressed zImage. This is more consistent with other
> architectures and required to make the 'deb-pkg' target work.
> 
> Signed-off-by: Jurij Smakov <jurij@wooyd.org>
> Signed-off-by: Frans Pop <elendil@planet.nl>
> 
> ---
> The patch was taken from the Debian kernel package. It was written by
> Jurij. I added his Signed-off-by with his permission.
> 
> The patch was tested to work during my recent tests for the cmd64x issue.

Hmmm..
This path does the following:
1) zImage becomes default for sparc and sparc64
2) fixes zImage on sparc64 (it dod not work before)
3) On sparc zImage is a stripped version of vmlinux, on sparc64 it is a gzipped not-stripped
   version of vmlinux - so it introduces a significantly different zImage.

Could we agree on the _same_ format for zImage on sparc and sparc64 and then apply that patch?

I know Julian is working on unifying piggyback_{32,64}.c so maybe that is
covered by his work?

If we fix it so zImage is the same thing on sparc and sparc64 this could go in before
we see the unification of piggyback.
For deb-pkg to work we could just let the sparc64 version be a stripped version - no?
Then you would have covered my main complaint about this patch.

	Sam

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by
@ 2009-07-16 20:16   ` Sam Ravnborg
  0 siblings, 0 replies; 18+ messages in thread
From: Sam Ravnborg @ 2009-07-16 20:16 UTC (permalink / raw)
  To: Frans Pop; +Cc: sparclinux, linux-kbuild, Jurij Smakov, David Miller

On Thu, Jul 16, 2009 at 08:41:52PM +0200, Frans Pop wrote:
> From: Jurij Smakov <jurij@wooyd.org>
> Subject: sparc64: build compressed image (zImage) by default
> 
> Besides creating the uncompressed vmlinux image for sparc64, also
> create a compressed zImage. This is more consistent with other
> architectures and required to make the 'deb-pkg' target work.
> 
> Signed-off-by: Jurij Smakov <jurij@wooyd.org>
> Signed-off-by: Frans Pop <elendil@planet.nl>
> 
> ---
> The patch was taken from the Debian kernel package. It was written by
> Jurij. I added his Signed-off-by with his permission.
> 
> The patch was tested to work during my recent tests for the cmd64x issue.

Hmmm..
This path does the following:
1) zImage becomes default for sparc and sparc64
2) fixes zImage on sparc64 (it dod not work before)
3) On sparc zImage is a stripped version of vmlinux, on sparc64 it is a gzipped not-stripped
   version of vmlinux - so it introduces a significantly different zImage.

Could we agree on the _same_ format for zImage on sparc and sparc64 and then apply that patch?

I know Julian is working on unifying piggyback_{32,64}.c so maybe that is
covered by his work?

If we fix it so zImage is the same thing on sparc and sparc64 this could go in before
we see the unification of piggyback.
For deb-pkg to work we could just let the sparc64 version be a stripped version - no?
Then you would have covered my main complaint about this patch.

	Sam

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
  2009-07-16 18:41 ` Frans Pop
@ 2009-07-16 20:16   ` David Miller
  -1 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2009-07-16 20:16 UTC (permalink / raw)
  To: elendil; +Cc: sparclinux, linux-kbuild, jurij


It's in my queue you don't need to resend this:

http://patchwork.ozlabs.org/patch/29268/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by
@ 2009-07-16 20:16   ` David Miller
  0 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2009-07-16 20:16 UTC (permalink / raw)
  To: elendil; +Cc: sparclinux, linux-kbuild, jurij


It's in my queue you don't need to resend this:

http://patchwork.ozlabs.org/patch/29268/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
  2009-07-16 20:16   ` [PATCH,resend] sparc64: build compressed image (zImage) by David Miller
@ 2009-07-16 21:46     ` Frans Pop
  -1 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-16 21:46 UTC (permalink / raw)
  To: David Miller; +Cc: sparclinux, linux-kbuild, jurij

On Thursday 16 July 2009, David Miller wrote:
> It's in my queue you don't need to resend this:
>
> http://patchwork.ozlabs.org/patch/29268/

OK, thanks. I did not see any ack on my mail so I was not aware you'd 
already picked it up.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
@ 2009-07-16 21:46     ` Frans Pop
  0 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-16 21:46 UTC (permalink / raw)
  To: David Miller; +Cc: sparclinux, linux-kbuild, jurij

On Thursday 16 July 2009, David Miller wrote:
> It's in my queue you don't need to resend this:
>
> http://patchwork.ozlabs.org/patch/29268/

OK, thanks. I did not see any ack on my mail so I was not aware you'd 
already picked it up.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
  2009-07-16 20:16   ` [PATCH,resend] sparc64: build compressed image (zImage) by Sam Ravnborg
@ 2009-07-16 23:42     ` Julian Calaby
  -1 siblings, 0 replies; 18+ messages in thread
From: Julian Calaby @ 2009-07-16 23:42 UTC (permalink / raw)
  To: Frans Pop, sparclinux, linux-kbuild, Jurij Smakov, David Miller

On Fri, Jul 17, 2009 at 06:16, Sam Ravnborg<sam@ravnborg.org> wrote:
> Hmmm..
> This path does the following:
> 1) zImage becomes default for sparc and sparc64
> 2) fixes zImage on sparc64 (it dod not work before)
> 3) On sparc zImage is a stripped version of vmlinux, on sparc64 it is a gzipped not-stripped
>   version of vmlinux - so it introduces a significantly different zImage.
>
> Could we agree on the _same_ format for zImage on sparc and sparc64 and then apply that patch?
>
> I know Julian is working on unifying piggyback_{32,64}.c so maybe that is
> covered by his work?

I have been fiddling with that, but time is been at a premium at the moment.

I don't believe that changes to the zImage / vmlinux targets will
affect this as the tftpboot code uses the uncompressed (I believe)
"Image" target.

Thanks,

-- 

Julian Calaby

Email: julian.calaby@gmail.com
.Plan: http://sites.google.com/site/juliancalaby/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by
@ 2009-07-16 23:42     ` Julian Calaby
  0 siblings, 0 replies; 18+ messages in thread
From: Julian Calaby @ 2009-07-16 23:42 UTC (permalink / raw)
  To: Frans Pop, sparclinux, linux-kbuild, Jurij Smakov, David Miller

On Fri, Jul 17, 2009 at 06:16, Sam Ravnborg<sam@ravnborg.org> wrote:
> Hmmm..
> This path does the following:
> 1) zImage becomes default for sparc and sparc64
> 2) fixes zImage on sparc64 (it dod not work before)
> 3) On sparc zImage is a stripped version of vmlinux, on sparc64 it is a gzipped not-stripped
>   version of vmlinux - so it introduces a significantly different zImage.
>
> Could we agree on the _same_ format for zImage on sparc and sparc64 and then apply that patch?
>
> I know Julian is working on unifying piggyback_{32,64}.c so maybe that is
> covered by his work?

I have been fiddling with that, but time is been at a premium at the moment.

I don't believe that changes to the zImage / vmlinux targets will
affect this as the tftpboot code uses the uncompressed (I believe)
"Image" target.

Thanks,

-- 

Julian Calaby

Email: julian.calaby@gmail.com
.Plan: http://sites.google.com/site/juliancalaby/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
  2009-07-16 20:16   ` [PATCH,resend] sparc64: build compressed image (zImage) by Sam Ravnborg
@ 2009-07-22 17:07     ` Frans Pop
  -1 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-22 17:07 UTC (permalink / raw)
  To: sparclinux, linux-kbuild; +Cc: Jurij Smakov, David Miller

On Thursday 16 July 2009, Sam Ravnborg wrote:
> On Thu, Jul 16, 2009 at 08:41:52PM +0200, Frans Pop wrote:
> > From: Jurij Smakov <jurij@wooyd.org>
> > Subject: sparc64: build compressed image (zImage) by default
> >
> > Besides creating the uncompressed vmlinux image for sparc64, also
> > create a compressed zImage. This is more consistent with other
> > architectures and required to make the 'deb-pkg' target work.
> >
> > Signed-off-by: Jurij Smakov <jurij@wooyd.org>
> > Signed-off-by: Frans Pop <elendil@planet.nl>
>
> Hmmm..
> This path does the following:
> 1) zImage becomes default for sparc and sparc64
> 2) fixes zImage on sparc64 (it dod not work before)
> 3) On sparc zImage is a stripped version of vmlinux, on sparc64 it is a
> gzipped not-stripped version of vmlinux - so it introduces a
> significantly different zImage.

If I read arch/sparc/boot/Makefile correctly then the sparc64 image _is_ 
stripped as the zImage target calls $(obj)/image which does the strip.
So the difference is less than you suggest.

> Could we agree on the _same_ format for zImage on sparc and sparc64 and
> then apply that patch?

I vaguely recall from Debian work that loading compressed kernels caused 
problems on sparc32 hardware (due to insufficient memory?), which could 
justify the difference. But I may be wrong.

Cheers,
FJP

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
@ 2009-07-22 17:07     ` Frans Pop
  0 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-22 17:07 UTC (permalink / raw)
  To: sparclinux, linux-kbuild; +Cc: Jurij Smakov, David Miller

On Thursday 16 July 2009, Sam Ravnborg wrote:
> On Thu, Jul 16, 2009 at 08:41:52PM +0200, Frans Pop wrote:
> > From: Jurij Smakov <jurij@wooyd.org>
> > Subject: sparc64: build compressed image (zImage) by default
> >
> > Besides creating the uncompressed vmlinux image for sparc64, also
> > create a compressed zImage. This is more consistent with other
> > architectures and required to make the 'deb-pkg' target work.
> >
> > Signed-off-by: Jurij Smakov <jurij@wooyd.org>
> > Signed-off-by: Frans Pop <elendil@planet.nl>
>
> Hmmm..
> This path does the following:
> 1) zImage becomes default for sparc and sparc64
> 2) fixes zImage on sparc64 (it dod not work before)
> 3) On sparc zImage is a stripped version of vmlinux, on sparc64 it is a
> gzipped not-stripped version of vmlinux - so it introduces a
> significantly different zImage.

If I read arch/sparc/boot/Makefile correctly then the sparc64 image _is_ 
stripped as the zImage target calls $(obj)/image which does the strip.
So the difference is less than you suggest.

> Could we agree on the _same_ format for zImage on sparc and sparc64 and
> then apply that patch?

I vaguely recall from Debian work that loading compressed kernels caused 
problems on sparc32 hardware (due to insufficient memory?), which could 
justify the difference. But I may be wrong.

Cheers,
FJP

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by default
  2009-07-22 17:07     ` Frans Pop
@ 2009-07-22 18:25       ` David Miller
  -1 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2009-07-22 18:25 UTC (permalink / raw)
  To: elendil; +Cc: sparclinux, linux-kbuild, jurij

From: Frans Pop <elendil@planet.nl>
Date: Wed, 22 Jul 2009 19:07:39 +0200

> I vaguely recall from Debian work that loading compressed kernels caused 
> problems on sparc32 hardware (due to insufficient memory?), which could 
> justify the difference. But I may be wrong.

This is, unfortunately, very likely true.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH,resend] sparc64: build compressed image (zImage) by
@ 2009-07-22 18:25       ` David Miller
  0 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2009-07-22 18:25 UTC (permalink / raw)
  To: elendil; +Cc: sparclinux, linux-kbuild, jurij

From: Frans Pop <elendil@planet.nl>
Date: Wed, 22 Jul 2009 19:07:39 +0200

> I vaguely recall from Debian work that loading compressed kernels caused 
> problems on sparc32 hardware (due to insufficient memory?), which could 
> justify the difference. But I may be wrong.

This is, unfortunately, very likely true.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH] sparc64: list zImage build target in 'make help' output
  2009-07-16 18:41 ` Frans Pop
@ 2009-07-23 18:55   ` Frans Pop
  -1 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-23 18:55 UTC (permalink / raw)
  To: sparclinux; +Cc: linux-kbuild, Jurij Smakov, David Miller

The zImage target was added and gets built by default.

Signed-off-by: Frans Pop <elendil@planet.nl>
Cc: Jurij Smakov <jurij@wooyd.org>
---

While looking at Sam Ravnborg's comments I noticed that the following
should be added on top of Jurij's patch.

David: if you prefer to merge this into the previous patch, that'd be
fine by me.

diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile
index 2adc5ea..b588880 100644
--- a/arch/sparc/Makefile
+++ b/arch/sparc/Makefile
@@ -112,8 +112,9 @@ define archhelp
 endef
 else
 define archhelp
-  echo  '* vmlinux       - Standard sparc64 kernel'
-  echo  '  vmlinux.aout  - a.out kernel for sparc64'
+  echo  '* vmlinux      - standard sparc64 kernel'
+  echo  '* zImage       - stripped and compressed sparc64 kernel ($(boot)/zImage)'
+  echo  '  vmlinux.aout - a.out kernel for sparc64'
   echo  '  tftpboot.img - image prepared for tftp'
 endef
 endif

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH] sparc64: list zImage build target in 'make help' output
@ 2009-07-23 18:55   ` Frans Pop
  0 siblings, 0 replies; 18+ messages in thread
From: Frans Pop @ 2009-07-23 18:55 UTC (permalink / raw)
  To: sparclinux; +Cc: linux-kbuild, Jurij Smakov, David Miller

The zImage target was added and gets built by default.

Signed-off-by: Frans Pop <elendil@planet.nl>
Cc: Jurij Smakov <jurij@wooyd.org>
---

While looking at Sam Ravnborg's comments I noticed that the following
should be added on top of Jurij's patch.

David: if you prefer to merge this into the previous patch, that'd be
fine by me.

diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile
index 2adc5ea..b588880 100644
--- a/arch/sparc/Makefile
+++ b/arch/sparc/Makefile
@@ -112,8 +112,9 @@ define archhelp
 endef
 else
 define archhelp
-  echo  '* vmlinux       - Standard sparc64 kernel'
-  echo  '  vmlinux.aout  - a.out kernel for sparc64'
+  echo  '* vmlinux      - standard sparc64 kernel'
+  echo  '* zImage       - stripped and compressed sparc64 kernel ($(boot)/zImage)'
+  echo  '  vmlinux.aout - a.out kernel for sparc64'
   echo  '  tftpboot.img - image prepared for tftp'
 endef
 endif

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH] sparc64: list zImage build target in 'make help' output
  2009-07-23 18:55   ` Frans Pop
@ 2009-08-17  1:22     ` David Miller
  -1 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2009-08-17  1:22 UTC (permalink / raw)
  To: elendil; +Cc: sparclinux, linux-kbuild, jurij

From: Frans Pop <elendil@planet.nl>
Date: Thu, 23 Jul 2009 20:55:18 +0200

> The zImage target was added and gets built by default.
> 
> Signed-off-by: Frans Pop <elendil@planet.nl>
> Cc: Jurij Smakov <jurij@wooyd.org>
> ---
> 
> While looking at Sam Ravnborg's comments I noticed that the following
> should be added on top of Jurij's patch.
> 
> David: if you prefer to merge this into the previous patch, that'd be
> fine by me.

I merged it into the sparc64 zImage patch, thanks!

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH] sparc64: list zImage build target in 'make help' output
@ 2009-08-17  1:22     ` David Miller
  0 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2009-08-17  1:22 UTC (permalink / raw)
  To: elendil; +Cc: sparclinux, linux-kbuild, jurij

From: Frans Pop <elendil@planet.nl>
Date: Thu, 23 Jul 2009 20:55:18 +0200

> The zImage target was added and gets built by default.
> 
> Signed-off-by: Frans Pop <elendil@planet.nl>
> Cc: Jurij Smakov <jurij@wooyd.org>
> ---
> 
> While looking at Sam Ravnborg's comments I noticed that the following
> should be added on top of Jurij's patch.
> 
> David: if you prefer to merge this into the previous patch, that'd be
> fine by me.

I merged it into the sparc64 zImage patch, thanks!

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2009-08-17  1:22 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-16 18:41 [PATCH,resend] sparc64: build compressed image (zImage) by default Frans Pop
2009-07-16 18:41 ` Frans Pop
2009-07-16 20:16 ` Sam Ravnborg
2009-07-16 20:16   ` [PATCH,resend] sparc64: build compressed image (zImage) by Sam Ravnborg
2009-07-16 23:42   ` [PATCH,resend] sparc64: build compressed image (zImage) by default Julian Calaby
2009-07-16 23:42     ` [PATCH,resend] sparc64: build compressed image (zImage) by Julian Calaby
2009-07-22 17:07   ` [PATCH,resend] sparc64: build compressed image (zImage) by default Frans Pop
2009-07-22 17:07     ` Frans Pop
2009-07-22 18:25     ` David Miller
2009-07-22 18:25       ` [PATCH,resend] sparc64: build compressed image (zImage) by David Miller
2009-07-16 20:16 ` [PATCH,resend] sparc64: build compressed image (zImage) by default David Miller
2009-07-16 20:16   ` [PATCH,resend] sparc64: build compressed image (zImage) by David Miller
2009-07-16 21:46   ` [PATCH,resend] sparc64: build compressed image (zImage) by default Frans Pop
2009-07-16 21:46     ` Frans Pop
2009-07-23 18:55 ` [PATCH] sparc64: list zImage build target in 'make help' output Frans Pop
2009-07-23 18:55   ` Frans Pop
2009-08-17  1:22   ` David Miller
2009-08-17  1:22     ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.