Difference between revisions of "WiFi"
From FriendlyELEC WiKi
(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...") |
(updated by API) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | ===Change | + | [[WiFi/zh|查看中文]] |
− | View the current | + | ===Change the ap6212 wifi country code=== |
+ | 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> |
Latest revision as of 10:02, 10 September 2021
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