mirror of https://github.com/OpenIPC/wiki.git
1.6 KiB
1.6 KiB
OpenIPC Wiki
Wireless settings
Initial configuration
- The wireless settings are provided based on a uboot variable:
# HI3516EV300 CamHi
+if [ "$1" = "mt7601u-hi3516ev300-camhi" ]; then
devmem 0x100C0080 32 0x530
- The variables are listed here and be can set with:
fw_setenv wlandevice mt7601u-hi3516ev300-camhi
Enter wireless credentials
- Credentials can be added with:
fw_setenv wlanssid OpenIPC
fw_setenv wlanpass openipc12345
Adopt custom settings
- It is possible to convert existing wlan0 settings to the new configuration:
auto wlan0
iface wlan0 inet dhcp
+ pre-up devmem 0x100C0080 32 0x530
+ pre-up echo 7 > /sys/class/gpio/export
+ pre-up echo out > /sys/class/gpio/gpio7/direction
+ pre-up echo 0 > /sys/class/gpio/gpio7/value
+ pre-up modprobe mt7601u
pre-up wpa_passphrase "SSID" "password" >/tmp/wpa_supplicant.conf
pre-up sed -i '2i \\tscan_ssid=1' /tmp/wpa_supplicant.conf
pre-up sleep 3
pre-up wpa_supplicant -B -D nl80211 -i wlan0 -c/tmp/wpa_supplicant.conf
post-down killall -q wpa_supplicant
post-down echo 1 > /sys/class/gpio/gpio7/value
+ post-down echo 7 > /sys/class/gpio/unexport
# HI3516EV300 CamHi
if [ "$1" = "mt7601u-hi3516ev300-camhi" ]; then
+ devmem 0x100C0080 32 0x530
+ echo 7 > /sys/class/gpio/export
+ echo out > /sys/class/gpio/gpio7/direction
+ echo 0 > /sys/class/gpio/gpio7/value
sleep 1
+ modprobe mt7601u
exit 0
fi