summaryrefslogtreecommitdiffstats
path: root/common/bootm.c
diff options
context:
space:
mode:
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;
}