linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix booting on a number of Motorola PPC32 machines
@ 2003-12-03 16:35 Tom Rini
  2003-12-08 15:19 ` [PATCH][RESEND] " Tom Rini
  2003-12-15 16:51 ` [PATCH][RESEND x 2] " Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Tom Rini @ 2003-12-03 16:35 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Kernel Mailing List, Sam Ravnborg, Paul Mackerras

Hello.  Currently a number of Motorola PPC32 machine will not boot, as
the final zImage isn't built correctly for them.  The problem is that
we end up setting a Makefile variable to ' y' instead of 'y'.  After
talking with Sam Ravnborg, the following is acceptable.

===== arch/ppc/boot/simple/Makefile 1.23 vs edited =====
--- 1.23/arch/ppc/boot/simple/Makefile	Mon Sep 15 01:01:24 2003
+++ edited/arch/ppc/boot/simple/Makefile	Mon Dec  1 12:25:29 2003
@@ -73,9 +73,8 @@
    cacheflag-$(CONFIG_K2)		:= -include $(clear_L2_L3)
 
 # kconfig 'feature', only one of these will ever be 'y' at a time.
-# The rest will be unset.
-motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750) \
-$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
+# The rest will be unset.  Each of these must be on one line.
+motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750)$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
 pcore := $(CONFIG_PCORE)$(CONFIG_POWERPMC250)
 
       zimage-$(motorola)		:= zImage-PPLUS

-- 
Tom Rini
http://gate.crashing.org/~trini/

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

* [PATCH][RESEND] Fix booting on a number of Motorola PPC32 machines
  2003-12-03 16:35 [PATCH] Fix booting on a number of Motorola PPC32 machines Tom Rini
@ 2003-12-08 15:19 ` Tom Rini
  2003-12-15 16:51 ` [PATCH][RESEND x 2] " Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2003-12-08 15:19 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Kernel Mailing List, Sam Ravnborg, Paul Mackerras

Hello.  I first sent this on 3 Dec 2003, with no response or followup.
Currently a number of Motorola PPC32 machine will not boot, as
the final zImage isn't built correctly for them.  The problem is that
we end up setting a Makefile variable to ' y' instead of 'y'.  After
talking with Sam Ravnborg, the following is acceptable.

===== arch/ppc/boot/simple/Makefile 1.23 vs edited =====
--- 1.23/arch/ppc/boot/simple/Makefile	Mon Sep 15 01:01:24 2003
+++ edited/arch/ppc/boot/simple/Makefile	Mon Dec  1 12:25:29 2003
@@ -73,9 +73,8 @@
    cacheflag-$(CONFIG_K2)		:= -include $(clear_L2_L3)
 
 # kconfig 'feature', only one of these will ever be 'y' at a time.
-# The rest will be unset.
-motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750) \
-$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
+# The rest will be unset.  Each of these must be on one line.
+motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750)$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
 pcore := $(CONFIG_PCORE)$(CONFIG_POWERPMC250)
 
       zimage-$(motorola)		:= zImage-PPLUS


-- 
Tom Rini
http://gate.crashing.org/~trini/

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

* [PATCH][RESEND x 2] Fix booting on a number of Motorola PPC32 machines
  2003-12-03 16:35 [PATCH] Fix booting on a number of Motorola PPC32 machines Tom Rini
  2003-12-08 15:19 ` [PATCH][RESEND] " Tom Rini
@ 2003-12-15 16:51 ` Tom Rini
  2003-12-15 17:14   ` Keith Owens
  1 sibling, 1 reply; 4+ messages in thread
From: Tom Rini @ 2003-12-15 16:51 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton
  Cc: Kernel Mailing List, Sam Ravnborg, Paul Mackerras

Hello.  I first sent this on 3 Dec 2003, and again on 8 Dec 2003,
with no response or followup.
Currently a number of Motorola PPC32 machine will not boot, as
the final zImage isn't built correctly for them.  The problem is that
we end up setting a Makefile variable to ' y' instead of 'y'.  After
talking with Sam Ravnborg, the following is acceptable.

===== arch/ppc/boot/simple/Makefile 1.23 vs edited =====
--- 1.23/arch/ppc/boot/simple/Makefile	Mon Sep 15 01:01:24 2003
+++ edited/arch/ppc/boot/simple/Makefile	Mon Dec  1 12:25:29 2003
@@ -73,9 +73,8 @@
    cacheflag-$(CONFIG_K2)		:= -include $(clear_L2_L3)
 
 # kconfig 'feature', only one of these will ever be 'y' at a time.
-# The rest will be unset.
-motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750) \
-$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
+# The rest will be unset.  Each of these must be on one line.
+motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750)$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
 pcore := $(CONFIG_PCORE)$(CONFIG_POWERPMC250)
 
       zimage-$(motorola)		:= zImage-PPLUS


-- 
Tom Rini
http://gate.crashing.org/~trini/

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

* Re: [PATCH][RESEND x 2] Fix booting on a number of Motorola PPC32 machines
  2003-12-15 16:51 ` [PATCH][RESEND x 2] " Tom Rini
@ 2003-12-15 17:14   ` Keith Owens
  0 siblings, 0 replies; 4+ messages in thread
From: Keith Owens @ 2003-12-15 17:14 UTC (permalink / raw)
  To: Tom Rini; +Cc: Kernel Mailing List

On Mon, 15 Dec 2003 09:51:17 -0700, 
Tom Rini <trini@kernel.crashing.org> wrote:
>===== arch/ppc/boot/simple/Makefile 1.23 vs edited =====
>--- 1.23/arch/ppc/boot/simple/Makefile	Mon Sep 15 01:01:24 2003
>+++ edited/arch/ppc/boot/simple/Makefile	Mon Dec  1 12:25:29 2003
>@@ -73,9 +73,8 @@
>    cacheflag-$(CONFIG_K2)		:= -include $(clear_L2_L3)
> 
> # kconfig 'feature', only one of these will ever be 'y' at a time.
>-# The rest will be unset.
>-motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750) \
>-$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
>+# The rest will be unset.  Each of these must be on one line.
>+motorola := $(CONFIG_MCPN765)$(CONFIG_MVME5100)$(CONFIG_PRPMC750)$(CONFIG_PRPMC800)$(CONFIG_LOPEC)$(CONFIG_PPLUS)
> pcore := $(CONFIG_PCORE)$(CONFIG_POWERPMC250)

If you want to keep the original line for readability, follow it with

motorola := $(strip $(motorola))

To remove leading and trailing spaces.


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

end of thread, other threads:[~2003-12-15 17:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-03 16:35 [PATCH] Fix booting on a number of Motorola PPC32 machines Tom Rini
2003-12-08 15:19 ` [PATCH][RESEND] " Tom Rini
2003-12-15 16:51 ` [PATCH][RESEND x 2] " Tom Rini
2003-12-15 17:14   ` Keith Owens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).