mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-27 01:54:46 -07:00
doc: add how to disable wifi entirely to the faq
Fixes #234 Co-authored-by: joelishness <joelishness@gmail.com>
This commit is contained in:
17
doc/faq.md
17
doc/faq.md
@@ -37,3 +37,20 @@ installer util shell reboot
|
|||||||
```
|
```
|
||||||
|
|
||||||
See `/data/usb/boot_hsusb_composition` for a list of USB modes and Android USB gadget settings.
|
See `/data/usb/boot_hsusb_composition` for a list of USB modes and Android USB gadget settings.
|
||||||
|
|
||||||
|
|
||||||
|
### How do I disable the WiFi hotspot on the Orbic RC400L?
|
||||||
|
|
||||||
|
To disable both WiFi bands:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
adb shell
|
||||||
|
/bin/rootshell -c "sed -i 's/<wlan><Feature><state>1<\/state>/<wlan><Feature><state>0<\/state>/g' /usrdata/data/usr/wlan/wlan_conf_6174.xml && reboot"
|
||||||
|
```
|
||||||
|
|
||||||
|
To re-enable WiFi:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
adb shell
|
||||||
|
/bin/rootshell -c "sed -i 's/<wlan><Feature><state>0<\/state>/<wlan><Feature><state>1<\/state>/g' /usrdata/data/usr/wlan/wlan_conf_6174.xml && reboot"
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user