summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam Alford <liam@smithmyers.com>2013-11-21 13:55:42 +0000
committerDan Pasanen <dan.pasanen@gmail.com>2014-01-04 10:39:41 -0600
commit2fccbdf3da79961370fdeb0e1ec01356c0bdf50e (patch)
tree267cafa73429be98a9a8969c47b35bd8001122fa
parent5b41817b966a35f022d6d8117897196938486338 (diff)
downloadandroid_hardware_samsung-2fccbdf3da79961370fdeb0e1ec01356c0bdf50e.tar.gz
android_hardware_samsung-2fccbdf3da79961370fdeb0e1ec01356c0bdf50e.tar.bz2
android_hardware_samsung-2fccbdf3da79961370fdeb0e1ec01356c0bdf50e.zip
Added more MAC's for murata.
After finding some i9300 devices who's MAC addresses were missing from the list, i searched for all murata MAC's and thought it wise to add them. Change-Id: I9e0db81cf2b1809b37b1660a4763db82699dd452
-rw-r--r--macloader/macloader.cpp27
1 files changed, 20 insertions, 7 deletions
diff --git a/macloader/macloader.cpp b/macloader/macloader.cpp
index fb796d9..313de60 100644
--- a/macloader/macloader.cpp
+++ b/macloader/macloader.cpp
@@ -61,15 +61,28 @@ int main() {
return -1;
}
- /* murata */
- if (strncasecmp(mac_addr_half, "00:37:6d", 9) == 0 ||
- strncasecmp(mac_addr_half, "88:30:8a", 9) == 0 ||
+ /* murata
+ ref: http://hwaddress.com/?q=ACT */
+ if (strncasecmp(mac_addr_half, "00:0e:6d", 9) == 0 ||
+ strncasecmp(mac_addr_half, "00:13:e0", 9) == 0 ||
+ strncasecmp(mac_addr_half, "00:21:e8", 9) == 0 ||
+ strncasecmp(mac_addr_half, "00:26:e8", 9) == 0 ||
+ strncasecmp(mac_addr_half, "00:37:6d", 9) == 0 ||
+ strncasecmp(mac_addr_half, "00:60:57", 9) == 0 ||
+ strncasecmp(mac_addr_half, "04:46:65", 9) == 0 ||
+ strncasecmp(mac_addr_half, "10:5f:06", 9) == 0 ||
+ strncasecmp(mac_addr_half, "10:a5:D0", 9) == 0 ||
+ strncasecmp(mac_addr_half, "1c:99:4c", 9) == 0 ||
+ strncasecmp(mac_addr_half, "14:7d:c5", 9) == 0 ||
strncasecmp(mac_addr_half, "20:02:af", 9) == 0 ||
- strncasecmp(mac_addr_half, "5c:f8:a1", 9) == 0 ||
strncasecmp(mac_addr_half, "40:f3:08", 9) == 0 ||
- strncasecmp(mac_addr_half, "f0:27:65", 9) == 0 ||
- strncasecmp(mac_addr_half, "1c:99:4c", 9) == 0 ||
- strncasecmp(mac_addr_half, "60:21:c0", 9) == 0) {
+ strncasecmp(mac_addr_half, "44:a7:cf", 9) == 0 ||
+ strncasecmp(mac_addr_half, "5c:da:d4", 9) == 0 ||
+ strncasecmp(mac_addr_half, "5c:f8:a1", 9) == 0 ||
+ strncasecmp(mac_addr_half, "78:4B:87", 9) == 0 ||
+ strncasecmp(mac_addr_half, "60:21:c0", 9) == 0 ||
+ strncasecmp(mac_addr_half, "88:30:8a", 9) == 0 ||
+ strncasecmp(mac_addr_half, "f0:27:65", 9) == 0) {
type = MURATA;
}