diff options
author | Niklaus Giger <niklaus.giger@member.fsf.org> | 2009-07-23 23:31:58 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-27 00:15:53 +0200 |
commit | 3c972849f2becbf19c13a24f090d293f37ecf616 (patch) | |
tree | 6364aef9f7cf0c035f24c0cf4fdcb2d024bf99a8 /common | |
parent | fcd3c87e495f3c48b70c919869fb1e0b93d4880b (diff) |
Less verbose output when loading vxworks 6.x images
Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
With vxWorks 6.x and the new GCC it emits about 30 lines, which is
far too noisy in my opinion.
Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_elf.c b/common/cmd_elf.c index abec7ddc9a5..63f6fe7a1fc 100644 --- a/common/cmd_elf.c +++ b/common/cmd_elf.c @@ -287,7 +287,7 @@ unsigned long load_elf_image (unsigned long addr) } if (strtab) { - printf ("%sing %s @ 0x%08lx (%ld bytes)\n", + debug("%sing %s @ 0x%08lx (%ld bytes)\n", (shdr->sh_type == SHT_NOBITS) ? "Clear" : "Load", &strtab[shdr->sh_name], |