mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 17:15:00 +02:00
[package] iwinfo: recognize AR5416 EEPROMs as seen on the Ubiquiti Picostation M2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30663 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2685b06017
commit
b888530e41
@ -7,7 +7,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libiwinfo
|
||||
PKG_RELEASE:=27
|
||||
PKG_RELEASE:=28
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
PKG_CONFIG_DEPENDS := \
|
||||
|
@ -165,7 +165,7 @@ int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
|
||||
while (fgets(buf, sizeof(buf), mtd) > 0)
|
||||
{
|
||||
if (fscanf(mtd, "mtd%d: %*x %x %127s", &off, &len, buf) < 3 ||
|
||||
strcmp(buf, "\"boardconfig\""))
|
||||
strcmp(buf, "\"boardconfig\"") || strcmp(buf, "\"EEPROM\""))
|
||||
{
|
||||
off = -1;
|
||||
continue;
|
||||
@ -193,6 +193,7 @@ int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
|
||||
|
||||
for (off = len / 2 - 0x800; off >= 0; off -= 0x800)
|
||||
{
|
||||
/* AR531X board data magic */
|
||||
if ((bc[off] == 0x3533) && (bc[off + 1] == 0x3131))
|
||||
{
|
||||
id->vendor_id = bc[off + 0x7d];
|
||||
@ -201,6 +202,16 @@ int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
|
||||
id->subsystem_device_id = bc[off + 0x83];
|
||||
break;
|
||||
}
|
||||
|
||||
/* AR5416 EEPROM magic */
|
||||
else if ((bc[off] == 0xA55A) || (bc[off] == 0x5AA5))
|
||||
{
|
||||
id->vendor_id = bc[off + 0x0D];
|
||||
id->device_id = bc[off + 0x0E];
|
||||
id->subsystem_vendor_id = bc[off + 0x13];
|
||||
id->subsystem_device_id = bc[off + 0x14];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
munmap(bc, len);
|
||||
|
Loading…
Reference in New Issue
Block a user