Re: [PATCH 17/20] bootwrapper: Add PlanetCore firmware support.

2007-08-21 Thread David Gibson
On Tue, Aug 21, 2007 at 11:29:15AM -0500, Scott Wood wrote: > David Gibson wrote: > >>+void planetcore_prepare_table(char *table) > >>+{ > >>+ int last_was_newline = 0; > >>+ > >>+ while (*table != 10 || !last_was_newline) { > >>+ if (*table == 10) { > >>+ *table = 0

Re: [PATCH 17/20] bootwrapper: Add PlanetCore firmware support.

2007-08-21 Thread Scott Wood
David Gibson wrote: >>+void planetcore_prepare_table(char *table) >>+{ >>+ int last_was_newline = 0; >>+ >>+ while (*table != 10 || !last_was_newline) { >>+ if (*table == 10) { >>+ *table = 0; >>+ last_was_newline = 1; >>+ } el

Re: [PATCH 17/20] bootwrapper: Add PlanetCore firmware support.

2007-08-20 Thread David Gibson
On Mon, Aug 20, 2007 at 12:40:08PM -0500, Scott Wood wrote: > This is a library that board code can use to extract information from the > PlanetCore configuration keys. PlanetCore is used on various boards from > Embedded Planet. > > Signed-off-by: Scott Wood <[EMAIL PROTECTED]> [snip] ;5B;5B;5B

[PATCH 17/20] bootwrapper: Add PlanetCore firmware support.

2007-08-20 Thread Scott Wood
This is a library that board code can use to extract information from the PlanetCore configuration keys. PlanetCore is used on various boards from Embedded Planet. Signed-off-by: Scott Wood <[EMAIL PROTECTED]> --- arch/powerpc/boot/Makefile |2 +- arch/powerpc/boot/planetcore.c | 160 ++