Ver código fonte

Sleep on nodown

Bob Mottram 8 anos atrás
pai
commit
115e846da8

+ 2
- 1
src/freedombone-image-customise Ver arquivo

@@ -413,13 +413,14 @@ EOF
413 413
     echo "                echo 'Description=WifiStartup (Start wifi networking)' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
414 414
     echo "                echo 'After=syslog.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
415 415
     echo "                echo 'After=network.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
416
+    echo "                echo 'After=remote-fs.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
416 417
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
417 418
     echo "                echo '[Service]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
418 419
     echo "                echo 'Type=simple' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
419 420
     echo "                echo 'User=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
420 421
     echo "                echo 'Group=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
421 422
     echo "                echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
422
-    echo "                echo 'ExecStart=/usr/local/bin/freedombone-wifi' >> /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 424
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
424 425
     echo "                echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
425 426
     echo "                echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc

+ 2
- 1
src/freedombone-utils-wifi Ver arquivo

@@ -555,13 +555,14 @@ function create_wifi_startup_script {
555 555
     echo 'Description=WifiStartup (Start wifi networking)' >> $systemd_file
556 556
     echo 'After=syslog.target' >> $systemd_file
557 557
     echo 'After=network.target' >> $systemd_file
558
+    echo 'After=remote-fs.target' >> $systemd_file
558 559
     echo '' >> $systemd_file
559 560
     echo '[Service]' >> $systemd_file
560 561
     echo 'Type=simple' >> $systemd_file
561 562
     echo 'User=root' >> $systemd_file
562 563
     echo 'Group=root' >> $systemd_file
563 564
     echo 'WorkingDirectory=/root' >> $systemd_file
564
-    echo "ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi" >> $systemd_file
565
+    echo "ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi --nodown y" >> $systemd_file
565 566
     echo '' >> $systemd_file
566 567
     echo '[Install]' >> $systemd_file
567 568
     echo 'WantedBy=multi-user.target' >> $systemd_file

+ 2
- 0
src/freedombone-wifi Ver arquivo

@@ -141,6 +141,8 @@ if [ ! ${wifi_interface_specified} ]; then
141 141
     if [ ! $NODOWN ]; then
142 142
        wpa_action ${WIFI_INTERFACE} stop
143 143
        wpa_cli -i ${WIFI_INTERFACE} terminate
144
+    else
145
+        sleep 5
144 146
     fi
145 147
     update_wifi_adaptors
146 148
     if [ ! $IFACE ]; then