[PATCH 1/1] filetype: add Android boot image support
Jean-Christophe PLAGNIOL-VILLARD
plagnioj at jcrosoft.com
Wed Apr 11 03:25:24 EDT 2012
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
---
common/filetype.c | 3 +++
include/filetype.h | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/common/filetype.c b/common/filetype.c
index 40faff3..b784bff 100644
--- a/common/filetype.c
+++ b/common/filetype.c
@@ -37,6 +37,7 @@ static const char *filetype_str[] = {
[filetype_gzip] = "gzip compressed",
[filetype_bzip2] = "bzip2 compressed",
[filetype_oftree] = "open firmware flat device tree",
+ [filetype_aimage] = "Android boot image",
};
const char *file_type_to_string(enum filetype f)
@@ -72,6 +73,8 @@ enum filetype file_detect_type(void *_buf)
return filetype_bzip2;
if (buf[0] == be32_to_cpu(0xd00dfeed))
return filetype_oftree;
+ if (strncmp(buf8, "ANDROID!", 8) == 0)
+ return filetype_aimage;
return filetype_unknown;
}
diff --git a/include/filetype.h b/include/filetype.h
index 88f31df..d0b6226 100644
--- a/include/filetype.h
+++ b/include/filetype.h
@@ -15,6 +15,7 @@ enum filetype {
filetype_gzip,
filetype_bzip2,
filetype_oftree,
+ filetype_aimage,
};
const char *file_type_to_string(enum filetype f);
--
1.7.9.1
More information about the barebox
mailing list