|
@@ -487,9 +487,13 @@ function create_networks_interactive {
|
487
|
487
|
do
|
488
|
488
|
data=$(tempfile 2>/dev/null)
|
489
|
489
|
trap "rm -f $data" 0 1 2 5 15
|
|
490
|
+ wifistr=$"\nTo use this system via wifi (eg. USB dongle) enter the details below, otherwise just select Ok:"
|
|
491
|
+ if [ -f /root/.wifi-only ]; then
|
|
492
|
+ wifistr=$"\nEnter your wifi login details below."
|
|
493
|
+ fi
|
490
|
494
|
dialog --backtitle $"Freedombone Configuration" \
|
491
|
495
|
--title $"Wifi Settings ${wifi_ctr}" \
|
492
|
|
- --form $"\nTo use this system via wifi (eg. USB dongle) enter the details below, otherwise just select Ok:" 13 65 4 \
|
|
496
|
+ --form "$wifistr" 13 65 4 \
|
493
|
497
|
$"SSID (can be 'any'):" 1 1 "$WIFI_SSID" 1 24 30 30 \
|
494
|
498
|
$"Type (open/wpa2-psk):" 2 1 "$WIFI_TYPE" 2 24 10 10 \
|
495
|
499
|
$"Passphrase:" 3 1 "$WIFI_PASSPHRASE" 3 24 50 50 \
|