Quote:
Originally Posted by MicaOlaAdams
I can access the internet per wifi with KSM8s Wifi-Menu. If I don't enable wifi in KSM8 CoolReaders OPDS search gives me a network/wifi error. With wifi turned on in KSM8 I get no such error. That's why assumed Coolreader can actually connect with my router and calibre.
|
I guess the most recent version of PBChess was published long before the Kobo Ara One was available, and therefore does not know the path to the modules necessary to use wifi. You can try to make the following changes to vlasovsoft/wifi_on.sh:
Delete or comment out
Replace
Code:
lsmod | grep -q dhd || insmod /drivers/$PLATFORM/wifi/dhd.ko
with
Code:
lsmod | grep -q ${WIFI_MODULE} || insmod /drivers/${PLATFORM}/wifi/${WIFI_MODULE}.ko
In wifi_off.sh replace
with
Code:
/sbin/rmmod -r ${WIFI_MODULE}
Note: use a unix style editor!