From: Jean-Christophe PLAGNIOL-VILLARD Date: Mon, 8 Sep 2008 19:01:29 +0000 (+0200) Subject: mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start" X-Git-Tag: v2008.10-rc1~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a;p=u-boot mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start" Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- diff --git a/lib_mips/bootm.c b/lib_mips/bootm.c index c1bf21e3fc..dced28c7c1 100644 --- a/lib_mips/bootm.c +++ b/lib_mips/bootm.c @@ -73,7 +73,7 @@ int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) linux_env_set ("memsize", env_buf); sprintf (env_buf, "0x%08X", (uint) UNCACHED_SDRAM (images->rd_start)); - linux_env_set ("images->rd_start", env_buf); + linux_env_set ("initrd_start", env_buf); sprintf (env_buf, "0x%X", (uint) (images->rd_end - images->rd_start)); linux_env_set ("initrd_size", env_buf);