I went back and tried it your way. Got rid of "sudo" and put back the spaces in the final bootlocal.sh code ... and it still worked! Not sure why that didn't work last time I tried it (must be some other error I was making), and actually surprised it worked without the spaces. Either way, wifi is working on all computers with the proper codes. So for future reference, let's see if I have this straight now ...
1. Install wpa=supplicant.tcz using a wired connection.
2. in order to save changes to bootlocal.sh, use terminal to enter the following codes
sudo chown tc:staff /opt/bootlocal.sh
sudo chmod 775 /opt/bootlocal.sh
3. add the following code to bootlocal.sh (in /opt/) and save
ifconfig wlan0 up
wpa_supplicant -iwlan0 -c/home/tc/wifi.cfg -Dwext -B
udhcpc -i wlan0 -t 10
3. create a document in editor called wifi.cfg and save it in the /home/tc/ folder. In it is the following script
network={
scan_ssid=1
ssid="wifiname"
psk="password"
}
and substitute my actual wifiname and password. I put the wifiname and password in quotations.
Again, thanks for clarifying all this for me, and for helping me do this the right way, skip unnecessary things, and get the code right.
[/quote]