---- Continued from above ----
5. Activate dhcp (use the exact line - do not substitute anything):
sudo /sbin/udhcpc -b -i wlan0 -x hostname $ (hostname) -p /var/run/udhcpc.wlan0.pid
6. If all is well, you should have wifi working. If not, the original post by kissmurphy has more details that may be helpful:
(
http://forum.tinycorelinux.net/index.php/topic,23445.msg147221.html#msg147221)
7. When everything works copy the commands from step 4 to /opt/bootlocal.sh. This way wifi will run on startup:
echo "/usr/local/sbin/wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf" >> /opt/bootlocal.sh
8. Copy the commands from step 5 to /opt/bootlocal.sh. This way dhcp will run on startup:
echo "/sbin/udhcpc -b -i wlan0 -x hostname $(hostname) -p /var/run/udhcpc.wlan0.pid" >> /opt/bootlocal.sh
9. The final instruction will make the above instructions persistent (back up, next startup the system will remember these instructions):
filetool.sh -b
Thanks again for your kind help!
[Edit]: Removed space from between the $ sign and (hostname). Rich