[openwrt/openwrt] mvebu: fix default EU regdomain for Linksys WRT AC devices
LEDE Commits
lede-commits at lists.infradead.org
Sun Jun 28 08:38:49 EDT 2020
adrian pushed a commit to openwrt/openwrt.git, branch openwrt-19.07:
https://git.openwrt.org/6b042217d7f0379e8ab7ebc07a4cfe99f3f26b5a
commit 6b042217d7f0379e8ab7ebc07a4cfe99f3f26b5a
Author: Jose Olivera <oliverajeo at gmail.com>
AuthorDate: Mon May 20 21:10:56 2019 +0800
mvebu: fix default EU regdomain for Linksys WRT AC devices
The mwlwifi driver sets the default country code for EU (fi-
rmware region code 0x30) certified devices to FR (France),
not DE (Germany). Whilst this is a trivial fix, novice users
may not know how mwlwifi negatively reacts to a non-matching
country code and may leave the setting alone. Especially si-
nce it is under the advanced settings section in LuCI.
Relevant mwlwifi driver code:
https://github.com/kaloz/mwlwifi/commit/0a550312ddb5a9e00e8d602d5571598f25a78158
The mwlwifi driver readme states "Please don't change country
code and let mwlwifi set it for you." However, OpenWrt's current
behaviour does not adhere to this with its default, 'just flashed
from factory' setting for EU devices.
Signed-off-by: Jose Olivera <oliverajeo at gmail.com>
[rebase, extend commit message]
Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
(cherry picked from commit d0e8b8310f7079ccf250f7eddbdf8b9d319c274d)
---
target/linux/mvebu/base-files/etc/uci-defaults/03_wireless | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/linux/mvebu/base-files/etc/uci-defaults/03_wireless b/target/linux/mvebu/base-files/etc/uci-defaults/03_wireless
index 3c345ff148..16be496f17 100644
--- a/target/linux/mvebu/base-files/etc/uci-defaults/03_wireless
+++ b/target/linux/mvebu/base-files/etc/uci-defaults/03_wireless
@@ -26,7 +26,7 @@ linksys,caiman|linksys,cobra|linksys,mamba|linksys,shelby|linksys,venom)
REGD=CA
;;
EU)
- REGD=DE
+ REGD=FR
;;
US)
REGD=US
More information about the lede-commits
mailing list