Hi guys,
here's a simple fix to get rid of the annoying "unknown locale" messages in your system.log. These are caused by the TP-LINK WDN-4800 card, which has a regulatory domain value in its eeprom that is not recognized by OS X. It works by simply replacing the check for regdomain 0x37 (ETSI) by checking for the one in the EEPROM, i.e. 0x21.
Patch kext: AirPortAtheros40
Find: 83 fb 37 (cmpl $0x37, %ebx)
Replace: 83 fb 21 (cmpl $0x21, %ebx)
Simply add this to your KextsToPatch...
[Solved] How to get rid of the ATHR: unknown locale 21 errors
here's a simple fix to get rid of the annoying "unknown locale" messages in your system.log. These are caused by the TP-LINK WDN-4800 card, which has a regulatory domain value in its eeprom that is not recognized by OS X. It works by simply replacing the check for regdomain 0x37 (ETSI) by checking for the one in the EEPROM, i.e. 0x21.
Patch kext: AirPortAtheros40
Find: 83 fb 37 (cmpl $0x37, %ebx)
Replace: 83 fb 21 (cmpl $0x21, %ebx)
Simply add this to your KextsToPatch...
[Solved] How to get rid of the ATHR: unknown locale 21 errors