From 733d85510c74d9638dc88e001f45412f30a2f3d0 Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD Date: Fri, 13 Apr 2012 14:04:40 +0800 Subject: filetype: add Bourne Shell support Put it at first as it's the most likely to detect Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- common/filetype.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common/filetype.c') diff --git a/common/filetype.c b/common/filetype.c index 0120913a56..15a37325df 100644 --- a/common/filetype.c +++ b/common/filetype.c @@ -38,6 +38,7 @@ static const char *filetype_str[] = { [filetype_bzip2] = "bzip2 compressed", [filetype_oftree] = "open firmware flat device tree", [filetype_aimage] = "Android boot image", + [filetype_sh] = "Bourne Shell", }; const char *file_type_to_string(enum filetype f) @@ -53,6 +54,8 @@ enum filetype file_detect_type(void *_buf) u32 *buf = _buf; u8 *buf8 = _buf; + if (strncmp(buf8, "#!/bin/sh", 9) == 0) + return filetype_sh; if (buf[8] == 0x65726162 && buf[9] == 0x00786f62) return filetype_arm_barebox; if (buf[9] == 0x016f2818 || buf[9] == 0x18286f01) -- cgit v1.2.3