From df00e00076f06fbb50bafafb487895ea264d3670 Mon Sep 17 00:00:00 2001 From: oopsbagel Date: Wed, 23 Jul 2025 16:14:56 -0700 Subject: [PATCH] doc: add how to disable wifi entirely to the faq Fixes #234 Co-authored-by: joelishness --- doc/faq.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/faq.md b/doc/faq.md index c3b6986..d484014 100644 --- a/doc/faq.md +++ b/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. + + +### 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/1<\/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/0<\/state>/1<\/state>/g' /usrdata/data/usr/wlan/wlan_conf_6174.xml && reboot" +```