summaryrefslogtreecommitdiffstats
path: root/common/bootm.c
diff options
context:
space:
mode:
authorHolger Schurig <holgerschurig@gmail.com>2014-05-30 11:07:33 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-06-02 09:07:12 +0200
commitbfd5d7f11298ddff7f8c0ce47840d847fa19064a (patch)
treee39c0ad03359e4928752b3e37a142f68d69abcb9 /common/bootm.c
parentbd278ae4fd26b6b36c3a985167d71957d0e40f17 (diff)
downloadbarebox-bfd5d7f11298ddff7f8c0ce47840d847fa19064a.tar.gz
barebox-bfd5d7f11298ddff7f8c0ce47840d847fa19064a.tar.xz
misc: upper-case some abbreviations
Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/bootm.c')
-rw-r--r--common/bootm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bootm.c b/common/bootm.c
index b250bd14d6..d6e02a7c6a 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -403,7 +403,7 @@ int bootm_boot(struct bootm_data *bootm_data)
if (os_type == filetype_uimage) {
ret = bootm_open_os_uimage(data);
if (ret) {
- printf("loading os image failed with %s\n",
+ printf("Loading OS image failed with %s\n",
strerror(-ret));
goto err_out;
}
@@ -455,7 +455,7 @@ int bootm_boot(struct bootm_data *bootm_data)
printf("no image handler found for image type %s\n",
file_type_to_string(os_type));
if (os_type == filetype_uimage)
- printf("and os type: %d\n", data->os->header.ih_os);
+ printf("and OS type: %d\n", data->os->header.ih_os);
ret = -ENODEV;
goto err_out;
}