diff options
author | Ethan Chen <intervigil@gmail.com> | 2013-07-31 13:18:51 -0700 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2014-08-10 13:44:49 +0200 |
commit | d8e244706a52f7d587986696a2cf1de5bd234f16 (patch) | |
tree | 968394e71ac510e8991b84ee19428aa0838347d3 | |
parent | 91562300cac13655f858ac37ecb11a1ebc65ecd8 (diff) | |
download | hardware_samsung-d8e244706a52f7d587986696a2cf1de5bd234f16.zip hardware_samsung-d8e244706a52f7d587986696a2cf1de5bd234f16.tar.gz hardware_samsung-d8e244706a52f7d587986696a2cf1de5bd234f16.tar.bz2 |
macloader: add additional SEMCOSH mac addr
Change-Id: Ib0015cb828772b1723d596442df3f7e2e298c2a2
-rw-r--r-- | macloader/macloader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macloader/macloader.cpp b/macloader/macloader.cpp index b316c60..f370936 100644 --- a/macloader/macloader.cpp +++ b/macloader/macloader.cpp @@ -71,7 +71,8 @@ int main() { } /* semcosh */ - if (strncasecmp(mac_addr_half, "5c:0a:5b", 9) == 0) { + if (strncasecmp(mac_addr_half, "5c:0a:5b", 9) == 0 || + strncasecmp(mac_addr_half, "cc:3a:61", 9) == 0) { type = SEMCOSH; } |