Difference between revisions of "WiFi"

From FriendlyELEC WiKi
Jump to: navigation, search
(Created page with "===Change AP6212 country area=== View the current value: <syntaxhighlight lang="text"> cd /lib/firmware/brcm grep ccode *.txt -rn </syntaxhighlight> Change to other country, s...")
 
(Change AP6212 country area)
Line 1: Line 1:
===Change AP6212 country area===
+
===Change the ap6212 wifi country code===
View the current value:
+
View the current country code:
 
<syntaxhighlight lang="text">
 
<syntaxhighlight lang="text">
 
cd /lib/firmware/brcm
 
cd /lib/firmware/brcm
 
grep ccode *.txt -rn
 
grep ccode *.txt -rn
 
</syntaxhighlight>
 
</syntaxhighlight>
Change to other country, such as CN:
+
Change to other country code, such as CN:
 
<syntaxhighlight lang="text">
 
<syntaxhighlight lang="text">
 
cd /lib/firmware/brcm
 
cd /lib/firmware/brcm
 
sed 's/ccode=ALL/ccode=CN/g' *.txt -i
 
sed 's/ccode=ALL/ccode=CN/g' *.txt -i
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 08:44, 6 December 2019

Change the ap6212 wifi country code

View the current country code:

cd /lib/firmware/brcm
grep ccode *.txt -rn

Change to other country code, such as CN:

cd /lib/firmware/brcm
sed 's/ccode=ALL/ccode=CN/g' *.txt -i