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
This commit is contained in:
Kevin F. Haggerty 2016-10-22 09:59:15 -06:00
parent 5a2cc4eed5
commit 7cfaf3f36f

View File

@ -192,14 +192,16 @@ int main() {
}
/* 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) {
type = SEMCO3RD;
}
/* semco */
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) {
type = SEMCO;
}