diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2012-02-10 21:40:50 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2012-02-13 09:51:20 +0100 |
commit | 238b7b1d99940a4fa0579adda026fdebd67ae243 (patch) | |
tree | 6463e1e05374a39a77afeecc8098b53fa7bc65a6 /commands/bootm.c | |
parent | 3733e603fa4239b7bf5f337c084b1515ec09c4b1 (diff) | |
download | barebox-238b7b1d99940a4fa0579adda026fdebd67ae243.tar.gz |
uimage: Fix error message
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/bootm.c')
-rw-r--r-- | commands/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bootm.c b/commands/bootm.c index c23f4f3996..e96665adcf 100644 --- a/commands/bootm.c +++ b/commands/bootm.c @@ -324,7 +324,7 @@ static int do_bootm(struct command *cmdtp, int argc, char *argv[]) if (os_type == filetype_uimage) { ret = bootm_open_os_uimage(&data); if (ret) { - printf("loading initrd failed with %s\n", + printf("loading os image failed with %s\n", strerror(-ret)); goto err_out; } |