浏览代码

Test if wifi is running

Bob Mottram 8 年前
父节点
当前提交
4b737b40b2
共有 3 个文件被更改,包括 19 次插入3 次删除
  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 查看文件

1437
         cp $TEMP_WIFI_NETWORKS_FILE $WIFI_NETWORKS_FILE
1437
         cp $TEMP_WIFI_NETWORKS_FILE $WIFI_NETWORKS_FILE
1438
         rm $TEMP_WIFI_NETWORKS_FILE
1438
         rm $TEMP_WIFI_NETWORKS_FILE
1439
         ${PROJECT_NAME}-wifi --networks $WIFI_NETWORKS_FILE
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
     fi
1447
     fi
1443
 }
1448
 }
1444
 
1449
 

+ 3
- 1
src/freedombone-utils-final 查看文件

66
     fi
66
     fi
67
     if [ ! -f $IMAGE_PASSWORD_FILE ]; then
67
     if [ ! -f $IMAGE_PASSWORD_FILE ]; then
68
         if [ -f /root/${PROJECT_NAME}-wifi.cfg ]; then
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
         fi
72
         fi
71
         reboot
73
         reboot
72
     fi
74
     fi

+ 9
- 0
src/freedombone-utils-wifi 查看文件

39
 # repo for atheros AR9271 wifi driver
39
 # repo for atheros AR9271 wifi driver
40
 ATHEROS_WIFI_REPO="https://github.com/qca/open-ath9k-htc-firmware.git"
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
 function setup_wifi_atheros {
51
 function setup_wifi_atheros {
43
     if [[ $(running_as_root) == "0" ]]; then
52
     if [[ $(running_as_root) == "0" ]]; then
44
         return
53
         return