mirror of
https://github.com/koreader/koreader
synced 2024-11-11 19:11:14 +00:00
15 lines
405 B
Bash
15 lines
405 B
Bash
#!/bin/sh
|
|
|
|
# Load wifi modules and enable wifi.
|
|
|
|
lsmod | grep -q sdio_wifi_pwr || insmod /drivers/$PLATFORM/wifi/sdio_wifi_pwr.ko
|
|
lsmod | grep -q dhd || insmod /drivers/$PLATFORM/wifi/dhd.ko
|
|
sleep 1
|
|
|
|
ifconfig eth0 up
|
|
wlarm_le -i eth0 up
|
|
|
|
pidof wpa_supplicant >/dev/null || \
|
|
env -u LD_LIBRARY_PATH \
|
|
wpa_supplicant -s -ieth0 -O /var/run/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -B
|