[PATCH] U-boot passes the initrd as start/end, not start/size.
David Gibson
david at gibson.dropbear.id.au
Mon May 14 10:22:05 EST 2007
On Fri, May 11, 2007 at 12:52:03PM -0500, Scott Wood wrote:
Patch description would be good.
> Signed-off-by: Scott Wood <scottwood at freescale.com>
> ---
> arch/powerpc/boot/cuboot-83xx.c | 2 +-
> arch/powerpc/boot/cuboot-85xx.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/powerpc/boot/cuboot-83xx.c b/arch/powerpc/boot/cuboot-83xx.c
> index 6cbc20a..9af554e 100644
> --- a/arch/powerpc/boot/cuboot-83xx.c
> +++ b/arch/powerpc/boot/cuboot-83xx.c
> @@ -57,7 +57,7 @@ void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
>
> memcpy(&bd, (bd_t *)r3, sizeof(bd));
> loader_info.initrd_addr = r4;
> - loader_info.initrd_size = r4 ? r5 : 0;
> + loader_info.initrd_size = r4 ? r5 - r4 : 0;
> loader_info.cmdline = (char *)r6;
> loader_info.cmdline_len = r7 - r6;
>
> diff --git a/arch/powerpc/boot/cuboot-85xx.c b/arch/powerpc/boot/cuboot-85xx.c
> index f88ba00..e256031 100644
> --- a/arch/powerpc/boot/cuboot-85xx.c
> +++ b/arch/powerpc/boot/cuboot-85xx.c
> @@ -58,7 +58,7 @@ void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
>
> memcpy(&bd, (bd_t *)r3, sizeof(bd));
> loader_info.initrd_addr = r4;
> - loader_info.initrd_size = r4 ? r5 : 0;
> + loader_info.initrd_size = r4 ? r5 - r4 : 0;
> loader_info.cmdline = (char *)r6;
> loader_info.cmdline_len = r7 - r6;
Now that cuboot-ebony.c is merged, that should be fixed as well.
We should really think about some macro magic or something to avoid
this duplication of identical-save-for-bd_t's-definition cuboot
handling code.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
More information about the Linuxppc-dev
mailing list