macloader: Add additional OUIs

* Fix c0:bd:d1 while we are at it
* All OUI types verified by comparing dump of CIS against VID table
  in kernel source

Change-Id: I7858d8c03a176b9b37798bf0112f4b460ff2c9de
tirimbino
Kevin F. Haggerty 8 years ago committed by Kevin Haggerty
parent 5a2cc4eed5
commit d4ee359c8d
  1. 6
      macloader/macloader.c

@ -192,14 +192,16 @@ int main() {
} }
/* semco3rd */ /* semco3rd */
if (strncasecmp(mac_addr_half, "ec:1f:72", 9) == 0 || if (strncasecmp(mac_addr_half, "c0:bd:d1", 9) == 0 ||
strncasecmp(mac_addr_half, "e8:50:8b", 9) == 0 ||
strncasecmp(mac_addr_half, "ec:1f:72", 9) == 0 ||
strncasecmp(mac_addr_half, "f0:25:b7", 9) == 0 ||
strncasecmp(mac_addr_half, "f4:09:d8", 9) == 0) { strncasecmp(mac_addr_half, "f4:09:d8", 9) == 0) {
type = SEMCO3RD; type = SEMCO3RD;
} }
/* semco */ /* semco */
if (strncasecmp(mac_addr_half, "51:f6:6b", 9) == 0 || if (strncasecmp(mac_addr_half, "51:f6:6b", 9) == 0 ||
strncasecmp(mac_addr_half, "c0:bd:d1", 9) == 0 ||
strncasecmp(mac_addr_half, "ec:9b:f3", 9) == 0) { strncasecmp(mac_addr_half, "ec:9b:f3", 9) == 0) {
type = SEMCO; type = SEMCO;
} }

Loading…
Cancel
Save