diff options
author | dzu <dzu> | 2003-10-24 13:14:45 +0000 |
---|---|---|
committer | dzu <dzu> | 2003-10-24 13:14:45 +0000 |
commit | 8cb8143ef7e490c13512cbdf688faf39f5aa4179 (patch) | |
tree | 295195ef829bca08061ee62e62f7ac2a6d74cdeb /common/cmd_bootm.c | |
parent | 4654af27b894277c9e3dac5359f6b3e74d1405ac (diff) | |
download | u-boot-imx-8cb8143ef7e490c13512cbdf688faf39f5aa4179.zip u-boot-imx-8cb8143ef7e490c13512cbdf688faf39f5aa4179.tar.gz u-boot-imx-8cb8143ef7e490c13512cbdf688faf39f5aa4179.tar.bz2 |
* Correct header printing for multi-image files in do_bootm()
* Make CONFIG_SILENT_CONSOLE work with CONFIG_AUTOBOOT_KEYED
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r-- | common/cmd_bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index abdac23..07cda56 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -205,7 +205,7 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) SHOW_BOOT_PROGRESS (3); /* for multi-file images we need the data part, too */ - print_image_hdr (hdr); + print_image_hdr (addr); data = addr + sizeof(image_header_t); len = ntohl(hdr->ih_size); |