瀏覽代碼

wait rather than nodown

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

+ 1
- 1
src/freedombone-image-customise 查看文件

@@ -420,7 +420,7 @@ EOF
420 420
     echo "                echo 'User=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
421 421
     echo "                echo 'Group=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
422 422
     echo "                echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
423
-    echo "                echo 'ExecStart=/usr/local/bin/freedombone-wifi --nodown y' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
423
+    echo "                echo 'ExecStart=/usr/local/bin/freedombone-wifi --wait 5 2> /dev/null' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
424 424
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
425 425
     echo "                echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
426 426
     echo "                echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc

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

@@ -562,7 +562,7 @@ function create_wifi_startup_script {
562 562
     echo 'User=root' >> $systemd_file
563 563
     echo 'Group=root' >> $systemd_file
564 564
     echo 'WorkingDirectory=/root' >> $systemd_file
565
-    echo "ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi --nodown y" >> $systemd_file
565
+    echo "ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi --wait 5 2> /dev/null" >> $systemd_file
566 566
     echo '' >> $systemd_file
567 567
     echo '[Install]' >> $systemd_file
568 568
     echo 'WantedBy=multi-user.target' >> $systemd_file

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

@@ -46,7 +46,7 @@ WIFI_CONFIG=/etc/wpa_supplicant/wpa_supplicant.conf
46 46
 WIFI_NETWORKS_FILE=~/${PROJECT_NAME}-wifi.cfg
47 47
 NETWORKS_INTERACTIVE=
48 48
 WIFI_DISABLE=
49
-NODOWN=
49
+WAIT_SEC=
50 50
 
51 51
 IFACE=
52 52
 IFACE_SECONDARY=
@@ -87,9 +87,9 @@ do
87 87
             wifi_interface_specified=1
88 88
             write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
89 89
             ;;
90
-        --nodown)
90
+        --wait|--sleep|--pause)
91 91
             shift
92
-            NODOWN=1
92
+            WAIT_SEC=${1}
93 93
             ;;
94 94
         -t|--type)
95 95
             shift
@@ -138,11 +138,11 @@ if [ ${NETWORKS_INTERACTIVE} ]; then
138 138
 fi
139 139
 
140 140
 if [ ! ${wifi_interface_specified} ]; then
141
-    if [ ! $NODOWN ]; then
141
+    if [ ! $WAIT_SEC ]; then
142 142
        wpa_action ${WIFI_INTERFACE} stop
143 143
        wpa_cli -i ${WIFI_INTERFACE} terminate
144 144
     else
145
-        sleep 5
145
+        sleep ${WAIT_SEC}
146 146
     fi
147 147
     update_wifi_adaptors
148 148
     if [ ! $IFACE ]; then