diff options
author | Jason Jin <Jason.jin@freescale.com> | 2006-07-07 10:01:45 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-07-07 10:02:15 -0500 |
commit | e6cd2a1785d74ec3d30a86f1cb360be8de478151 (patch) | |
tree | 6df47cf98f50a0992b932113965ab4bf6ceef838 /common | |
parent | da012ab661fd4ab169dd7b9b32201a4df62cf34a (diff) | |
download | u-boot-imx-e6cd2a1785d74ec3d30a86f1cb360be8de478151.zip u-boot-imx-e6cd2a1785d74ec3d30a86f1cb360be8de478151.tar.gz u-boot-imx-e6cd2a1785d74ec3d30a86f1cb360be8de478151.tar.bz2 |
We made a u-boot patch to fix the hang up issue
when booting filesystem from ramdisk.
Signed-off-by:Jason Jin <Jason.jin@freescale.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_bootm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index e5d70fa..a78a16d 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -538,6 +538,7 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag, initrd_copy_to_ram = 0; } else { /* not set, no restrictions to load high */ initrd_high = ~0; + initrd_copy_to_ram = 0; } #ifdef CONFIG_LOGBUFFER |