summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleksij Rempel <linux@rempel-privat.de>2017-08-09 17:55:27 +0200
committerLucas Stach <l.stach@pengutronix.de>2017-08-15 15:39:25 +0200
commit4a740d68d413277a379bd65942df3c93328987ed (patch)
tree35a02b1e1f3f93c22a05d7278ce54fb35f682aad
parentd01954ef973a883fe8d51c610c1f89dc5bbc9f1e (diff)
downloadbarebox-4a740d68d413277a379bd65942df3c93328987ed.tar.gz
barebox-4a740d68d413277a379bd65942df3c93328987ed.tar.xz
filetype: fix file type detection for Barebox MIPS
Since there is no "0/" after "barebox" in the file header, comparison won't stop on the right place. Fix regression introduced by patch: |commit 03939c0dfbf27d99e81d85e1bc0340fbee083d74 |Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> |Date: Tue Jan 22 15:40:36 2013 +0100 | | filetype: add is_barebox_mips_head support Signed-off-by: Oleksij Rempel <linux@rempel-privat.de> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
-rw-r--r--include/filetype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/filetype.h b/include/filetype.h
index 709c1869f7..c84905d782 100644
--- a/include/filetype.h
+++ b/include/filetype.h
@@ -77,7 +77,7 @@ static inline int is_barebox_arm_head(const char *head)
#ifdef CONFIG_MIPS
static inline int is_barebox_mips_head(const char *head)
{
- return !strcmp(head + MIPS_HEAD_MAGICWORD_OFFSET, "barebox");
+ return !strncmp(head + MIPS_HEAD_MAGICWORD_OFFSET, "barebox", 7);
}
#else
static inline int is_barebox_mips_head(const char *head)