You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Make 2.4Ghz/5Ghz WiFi running at 40Mhz enabled. 开启 40Mhz WiFi 支持。
14
14
```
@@ -26,6 +26,11 @@ gForce1x1Exception=0
26
26
sae_enabled=1
27
27
```
28
28
29
+
- Disable BandCapability limits. 禁用频段适用限制。
30
+
```
31
+
BandCapability=0
32
+
```
33
+
29
34
This module should work on most of the devices. The basic logic is simple, but not all devices need such kind of module. If you can find `WCNSS_qcom_cfg.ini` in your system partition, please open an issue to report it to me; if you can't, this module won't work for you, including almost all Nexus/Pixel devices.
@@ -34,32 +39,31 @@ This module should work on most of the devices. The basic logic is simple, but n
34
39
35
40
Please follow the instuction below from @axeldna: 请按照说明进行操作
36
41
37
-
1. Removed the installed Wifi Bonding module.
38
-
移除已安装了的WIFI Bonding模块。
39
-
2. Removed all saved wifi 2.4Ghz networks (I removed all of them anyway, but shouldn't be necessary) .
40
-
移除所有已保存的2.4Ghz的Wifi(非必要)
41
-
3. Rebooted the phone (to make sure wifi settings are removed from cloud account too).
42
-
重启手机(以确保从云服务中删除相关的Wifi设置项)。
43
-
4. Installed the Wifi Bonding module. 安装Wifi Bonding模块。
42
+
1. Removed the installed WiFi Bonding module.
43
+
移除已安装了的WiFi Bonding模块。
44
+
2. Removed all saved WiFi 2.4Ghz networks (I removed all of them anyway, but shouldn't be necessary) .
45
+
移除所有已保存的2.4Ghz的WiFi(非必要)
46
+
3. Rebooted the phone (to make sure WiFi settings are removed from cloud account too).
47
+
重启手机(以确保从云服务中删除相关的WiFi设置项)。
48
+
4. Installed the WiFi Bonding module. 安装WiFi Bonding模块。
44
49
5. Rebooted the phone (as indicated by Magisk to start the module).
45
50
重启手机(根据Magisk指示来重启)。
46
-
6. With a phone "free of wifi" and with a fresh Wifi Bonding module, I joined 2.4Ghz wifi networks.
47
-
试着开始接入2.4Ghz的Wifi。
51
+
6. With a phone "free of WiFi" and with a fresh WiFi Bonding module, I joined 2.4Ghz WiFi networks.
52
+
试着开始接入2.4Ghz的WiFi。
48
53
7. Checked my newly registered 2.4Ghz networks and they are showing 150Mbps Link Speed.
49
-
自测新连上的2.4Ghz的Wifi有150Mbps的连接速度。
54
+
自测新连上的2.4Ghz的WiFi有150Mbps的连接速度。
50
55
8. On some MTK solution AP, they are showing 300Mbps Link Speed.
51
-
连接一些联发科路由的Wifi有300Mbps的连接速度。
56
+
连接一些联发科路由的WiFi有300Mbps的连接速度。
52
57
53
58
## NOTICE 小贴士
54
59
55
60
* You should use latest Magisk Manager to install this module. If you meet any problem under installation from Magisk Manager, please try to install it from recovery. 您应该使用最新的Magisk Manager来安装此模块。如果您在Magisk Manager中安装模块遇到问题,请尝试使用Recovery来安装
CFGS=$($CMDPREFIX find $EXISTING_DIRS -type f -name WCNSS_qcom_cfg.ini)
13
+
forCFGin$CFGS
4
14
do
5
-
[[ -f$CFG ]] && [[ !-L$CFG ]] && {
6
-
SELECTPATH=$CFG
15
+
[[ -f$CFG ]] && {
7
16
mkdir -p `dirname $MODPATH$CFG`
8
-
ui_print "- Migrating $MIRRORPATH$SELECTPATH"
9
-
cp -af $MIRRORPATH$SELECTPATH$MODPATH$SELECTPATH
17
+
ui_print "- Migrating $CFG"
18
+
$CMDPREFIXcp -af $CFG$MODPATH$CFG
10
19
ui_print "- Starting modifiy"
11
-
sed -i '/gChannelBondingMode24GHz=/d;/gChannelBondingMode5GHz=/d;/gForce1x1Exception=/d;/sae_enabled=/d;s/^END$/gChannelBondingMode24GHz=1\ngChannelBondingMode5GHz=1\ngForce1x1Exception=0\nsae_enabled=1\nEND/g'$MODPATH$SELECTPATH
20
+
sed -i '/gChannelBondingMode24GHz=/d;/gChannelBondingMode5GHz=/d;/gForce1x1Exception=/d;/sae_enabled=/d;/BandCapability=/d;s/^END$/gChannelBondingMode24GHz=1\ngChannelBondingMode5GHz=1\ngForce1x1Exception=0\nsae_enabled=1\nBandCapability=0\nEND/g'$MODPATH$CFG
0 commit comments