diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-08 21:01:29 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-09-09 15:53:22 +0200 |
commit | 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a (patch) | |
tree | 99112a2caad907dc052a4fcfa3f9a69a0b0dfe14 | |
parent | 9ba2e2c8191353d75b2d535e672a125be7b84c03 (diff) | |
download | u-boot-72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a.zip u-boot-72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a.tar.gz u-boot-72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a.tar.bz2 |
mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | lib_mips/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_mips/bootm.c b/lib_mips/bootm.c index c1bf21e..dced28c 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); |