Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- common/filetype.c | 2 ++ include/filetype.h | 1 + 2 files changed, 3 insertions(+) diff --git a/common/filetype.c b/common/filetype.c index 13c7994..7507d85 100644 --- a/common/filetype.c +++ b/common/filetype.c @@ -203,6 +203,8 @@ enum filetype file_detect_type(const void *_buf, size_t bufsize) return filetype_uimage; if (buf[0] == 0x23494255) return filetype_ubi; + if (buf[0] == le32_to_cpu(0x06101831)) + return filetype_ubifs; if (buf[0] == 0x20031985) return filetype_jffs2; if (buf8[0] == 0x1f && buf8[1] == 0x8b && buf8[2] == 0x08) diff --git a/include/filetype.h b/include/filetype.h index 1b90805..9a864da 100644 --- a/include/filetype.h +++ b/include/filetype.h @@ -27,6 +27,7 @@ enum filetype { filetype_png, filetype_ext, filetype_gpt, + filetype_ubifs, filetype_max, }; -- 1.8.4.rc1 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox