Browse Source

Test if wifi is running

Bob Mottram 8 years ago
parent
commit
4b737b40b2
3 changed files with 19 additions and 3 deletions
  1. 7
    2
      src/freedombone-controlpanel
  2. 3
    1
      src/freedombone-utils-final
  3. 9
    0
      src/freedombone-utils-wifi

+ 7
- 2
src/freedombone-controlpanel View File

@@ -1437,8 +1437,13 @@ function wifi_settings {
1437 1437
         cp $TEMP_WIFI_NETWORKS_FILE $WIFI_NETWORKS_FILE
1438 1438
         rm $TEMP_WIFI_NETWORKS_FILE
1439 1439
         ${PROJECT_NAME}-wifi --networks $WIFI_NETWORKS_FILE
1440
-        dialog --title $"Wifi Settings" \
1441
-               --msgbox $"Wifi settings were changed" 6 40
1440
+        if [[ $(wifi_is_running) == "1" ]]; then
1441
+            dialog --title $"Wifi Settings" \
1442
+                   --msgbox $"Wifi settings were changed." 6 60
1443
+        else
1444
+            dialog --title $"Wifi Settings" \
1445
+                   --msgbox $"Wifi settings were changed. You will need to restart the system for the changes to take effect." 6 60
1446
+        fi
1442 1447
     fi
1443 1448
 }
1444 1449
 

+ 3
- 1
src/freedombone-utils-final View File

@@ -66,7 +66,9 @@ function install_final {
66 66
     fi
67 67
     if [ ! -f $IMAGE_PASSWORD_FILE ]; then
68 68
         if [ -f /root/${PROJECT_NAME}-wifi.cfg ]; then
69
-            ${PROJECT_NAME}-wifi
69
+            if [[ $(wifi_is_running) == "0" ]]; then
70
+                ${PROJECT_NAME}-wifi
71
+            fi
70 72
         fi
71 73
         reboot
72 74
     fi

+ 9
- 0
src/freedombone-utils-wifi View File

@@ -39,6 +39,15 @@ WIFI_NETWORKS_FILE=~/${PROJECT_NAME}-wifi.cfg
39 39
 # repo for atheros AR9271 wifi driver
40 40
 ATHEROS_WIFI_REPO="https://github.com/qca/open-ath9k-htc-firmware.git"
41 41
 
42
+function wifi_is_running {
43
+    wifi_state=$(wpa_cli status)
44
+    if [[ "$wifi_state" == *"COMPLETED"* ]]; then
45
+        echo "1"
46
+    else
47
+        echo "0"
48
+    fi
49
+}
50
+
42 51
 function setup_wifi_atheros {
43 52
     if [[ $(running_as_root) == "0" ]]; then
44 53
         return