klimmeru wrote: 
> Hi, 
> 
> I tried to use the setup script for setting up Wifi. But it does not
> allow the full possible length of a Wifi password to be entered. 
> 
> See part of the setup script below: It is limited to 40 chars. SSID
> should be 32 long. Key 64. 
> 
> I don't know if the setup script is supposed to be working in v6.0.0. I
> made a new image with a fix. But it did not seem to work. 
> 
> ----Below: part of setup script with the 40 char limit.
> > 
Code:
--------------------
  >   > pcp_wireless_menu() {
  > exec 3>&1
  > VALUES=$(dialog \
  > --title            "Wireless Menu" \
  > --ok-label         "OK" \
  > --no-cancel \
  > --output-separator "," \
  > --backtitle        "$BACKTITLE" \
  > --form             "Setup Wifi" \
  > 0 0 0 \
  > \
  > "SSID:"                     1 1  "$SSID"        1 27 40 0 \
  > "Password:"                 2 1  "$PASSWORD"    2 27 40 0 \
  > "Security [WEP|WPA|OPEN]:"  3 1  "$ENCRYPTION"  3 27 4 0 \
  > 2>&1 1>&3)
  > result=$?
  > exec 3>&-
  > SSID=$(echo ${VALUES} | awk -F, '{ print $1 }')
  > PASSWORD=$(echo ${VALUES} | awk -F, '{ print $2 }')
--------------------
> > 
> 

The CLI setup interface is not as up to date as the web interface. Use
the web interface if you can. I will see what I can do to update setup.
No country code either.


------------------------------------------------------------------------
Greg Erskine's Profile: http://forums.slimdevices.com/member.php?userid=7403
View this thread: http://forums.slimdevices.com/showthread.php?t=111787

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to