summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-10-30 15:35:07 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-10-30 15:42:39 +0100
commitcc9fffc825d7404315c60b70f68f293c355b90fd (patch)
tree043786a1509b92e21ff61f6333c6c1d4b3554c75
parente2fce6b92c19e15593f98f354d19b2f7716896a9 (diff)
downloadbarebox-cc9fffc825d7404315c60b70f68f293c355b90fd.tar.gz
barebox-cc9fffc825d7404315c60b70f68f293c355b90fd.tar.xz
filetype: add shortnames
The filetype strings are not really suitable for shell scripts, so add a shortname array of filetypes usable for shell scripts. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--common/filetype.c51
-rw-r--r--include/filetype.h2
2 files changed, 34 insertions, 19 deletions
diff --git a/common/filetype.c b/common/filetype.c
index f37370e457..b8d54f7fe0 100644
--- a/common/filetype.c
+++ b/common/filetype.c
@@ -24,30 +24,43 @@
#include <malloc.h>
#include <errno.h>
-static const char *filetype_str[] = {
- [filetype_unknown] = "unknown",
- [filetype_arm_zimage] = "arm Linux zImage",
- [filetype_lzo_compressed] = "lzo compressed",
- [filetype_arm_barebox] = "arm barebox image",
- [filetype_uimage] = "U-Boot uImage",
- [filetype_ubi] = "UBI image",
- [filetype_jffs2] = "JFFS2 image",
- [filetype_gzip] = "gzip compressed",
- [filetype_bzip2] = "bzip2 compressed",
- [filetype_oftree] = "open firmware flat device tree",
- [filetype_aimage] = "Android boot image",
- [filetype_sh] = "Bourne Shell",
- [filetype_mips_barebox] = "MIPS barebox image",
- [filetype_fat] = "FAT filesytem",
- [filetype_mbr] = "MBR sector",
- [filetype_bmp] = "BMP image",
- [filetype_png] = "PNG image",
+struct filetype_str {
+ const char *name; /* human readable filetype */
+ const char *shortname; /* short string without spaces for shell scripts */
+};
+
+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_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_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" },
};
const char *file_type_to_string(enum filetype f)
{
if (f < ARRAY_SIZE(filetype_str))
- return filetype_str[f];
+ return filetype_str[f].name;
+
+ return NULL;
+}
+
+const char *file_type_to_short_string(enum filetype f)
+{
+ if (f < ARRAY_SIZE(filetype_str))
+ return filetype_str[f].shortname;
return NULL;
}
diff --git a/include/filetype.h b/include/filetype.h
index 0b6cd24a6d..0a722a0a54 100644
--- a/include/filetype.h
+++ b/include/filetype.h
@@ -22,9 +22,11 @@ enum filetype {
filetype_mbr,
filetype_bmp,
filetype_png,
+ filetype_max,
};
const char *file_type_to_string(enum filetype f);
+const char *file_type_to_short_string(enum filetype f);
enum filetype file_detect_type(void *_buf);
enum filetype file_name_detect_type(const char *filename);
enum filetype is_fat_or_mbr(const unsigned char *sector, unsigned long *bootsec);