Procházet zdrojové kódy

Wifi settings description

Bob Mottram před 8 roky
rodič
revize
01936b3311
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5
    1
      src/freedombone-utils-wifi

+ 5
- 1
src/freedombone-utils-wifi Zobrazit soubor

487
     do
487
     do
488
         data=$(tempfile 2>/dev/null)
488
         data=$(tempfile 2>/dev/null)
489
         trap "rm -f $data" 0 1 2 5 15
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
         dialog --backtitle $"Freedombone Configuration" \
494
         dialog --backtitle $"Freedombone Configuration" \
491
                --title $"Wifi Settings ${wifi_ctr}" \
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
                $"SSID (can be 'any'):" 1 1 "$WIFI_SSID" 1 24 30 30 \
497
                $"SSID (can be 'any'):" 1 1 "$WIFI_SSID" 1 24 30 30 \
494
                $"Type (open/wpa2-psk):" 2 1 "$WIFI_TYPE" 2 24 10 10 \
498
                $"Type (open/wpa2-psk):" 2 1 "$WIFI_TYPE" 2 24 10 10 \
495
                $"Passphrase:" 3 1 "$WIFI_PASSPHRASE" 3 24 50 50 \
499
                $"Passphrase:" 3 1 "$WIFI_PASSPHRASE" 3 24 50 50 \