Selaa lähdekoodia

wait rather than nodown

Bob Mottram 8 vuotta sitten
vanhempi
commit
412ada5d6a
3 muutettua tiedostoa jossa 7 lisäystä ja 7 poistoa
  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 Näytä tiedosto

420
     echo "                echo 'User=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
420
     echo "                echo 'User=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
421
     echo "                echo 'Group=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
421
     echo "                echo 'Group=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
422
     echo "                echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
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
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
424
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
425
     echo "                echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
425
     echo "                echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
426
     echo "                echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
426
     echo "                echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc

+ 1
- 1
src/freedombone-utils-wifi Näytä tiedosto

562
     echo 'User=root' >> $systemd_file
562
     echo 'User=root' >> $systemd_file
563
     echo 'Group=root' >> $systemd_file
563
     echo 'Group=root' >> $systemd_file
564
     echo 'WorkingDirectory=/root' >> $systemd_file
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
     echo '' >> $systemd_file
566
     echo '' >> $systemd_file
567
     echo '[Install]' >> $systemd_file
567
     echo '[Install]' >> $systemd_file
568
     echo 'WantedBy=multi-user.target' >> $systemd_file
568
     echo 'WantedBy=multi-user.target' >> $systemd_file

+ 5
- 5
src/freedombone-wifi Näytä tiedosto

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