summaryrefslogtreecommitdiffstats
path: root/common
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
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')
-rw-r--r--common/bootm.c4
-rw-r--r--common/filetype.c20
2 files changed, 12 insertions, 12 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;
}
diff --git a/common/filetype.c b/common/filetype.c
index 0b5da3042a..508a2b56bf 100644
--- a/common/filetype.c
+++ b/common/filetype.c
@@ -32,24 +32,24 @@ struct filetype_str {
static const struct filetype_str filetype_str[] = {
[filetype_unknown] = { "unknown", "unkown" },
- [filetype_arm_zimage] = { "arm Linux zImage", "arm-zimage" },
- [filetype_lzo_compressed] = { "lzo compressed", "lzo" },
- [filetype_lz4_compressed] = { "lz4 compressed", "lz4" },
- [filetype_arm_barebox] = { "arm barebox image", "arm-barebox" },
+ [filetype_arm_zimage] = { "ARM Linux zImage", "arm-zimage" },
+ [filetype_lzo_compressed] = { "LZO compressed", "lzo" },
+ [filetype_lz4_compressed] = { "LZ4 compressed", "lz4" },
+ [filetype_arm_barebox] = { "ARM barebox image", "arm-barebox" },
[filetype_uimage] = { "U-Boot uImage", "u-boot" },
[filetype_ubi] = { "UBI image", "ubi" },
[filetype_jffs2] = { "JFFS2 image", "jffs2" },
- [filetype_gzip] = { "gzip compressed", "gzip" },
- [filetype_bzip2] = { "bzip2 compressed", "bzip2" },
- [filetype_oftree] = { "open firmware flat device tree", "dtb" },
- [filetype_aimage] = { "Android boot image", "android" },
- [filetype_sh] = { "Bourne Shell", "sh" },
+ [filetype_gzip] = { "GZIP compressed", "gzip" },
+ [filetype_bzip2] = { "BZIP2 compressed", "bzip2" },
+ [filetype_oftree] = { "open firmware Device Tree flattened Binary", "dtb" },
+ [filetype_aimage] = { "android boot image", "android" },
+ [filetype_sh] = { "bourne SHell", "sh" },
[filetype_mips_barebox] = { "MIPS barebox image", "mips-barebox" },
[filetype_fat] = { "FAT filesytem", "fat" },
[filetype_mbr] = { "MBR sector", "mbr" },
[filetype_bmp] = { "BMP image", "bmp" },
[filetype_png] = { "PNG image", "png" },
- [filetype_ext] = { "ext filesystem", "ext" },
+ [filetype_ext] = { "EXT filesystem", "ext" },
[filetype_gpt] = { "GUID Partition Table", "gpt" },
[filetype_bpk] = { "Binary PacKage", "bpk" },
[filetype_barebox_env] = { "barebox environment file", "bbenv" },