summaryrefslogtreecommitdiffstats
path: root/common/filetype.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-07-24 16:06:15 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-08-07 08:44:48 +0200
commitd9abbe8d0144b174b1934b570231fc756067c088 (patch)
tree1eb9a5ae3ccc6d1848b488e883509fc745bbf1cf /common/filetype.c
parent9576c342526094be3959b30242ebbad215ce7060 (diff)
downloadbarebox-d9abbe8d0144b174b1934b570231fc756067c088.tar.gz
barebox-d9abbe8d0144b174b1934b570231fc756067c088.tar.xz
filetype: Add ubifs detection
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/filetype.c')
-rw-r--r--common/filetype.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/filetype.c b/common/filetype.c
index 13c7994df5..7507d85de0 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)