瀏覽代碼

Wifi settings description

Bob Mottram 8 年之前
父節點
當前提交
01936b3311
共有 1 個檔案被更改,包括 5 行新增1 行删除
  1. 5
    1
      src/freedombone-utils-wifi

+ 5
- 1
src/freedombone-utils-wifi 查看文件

@@ -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 \