浏览代码

Sleep on nodown

Bob Mottram 8 年前
父节点
当前提交
115e846da8
共有 3 个文件被更改,包括 6 次插入2 次删除
  1. 2
    1
      src/freedombone-image-customise
  2. 2
    1
      src/freedombone-utils-wifi
  3. 2
    0
      src/freedombone-wifi

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

413
     echo "                echo 'Description=WifiStartup (Start wifi networking)' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
413
     echo "                echo 'Description=WifiStartup (Start wifi networking)' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
414
     echo "                echo 'After=syslog.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
414
     echo "                echo 'After=syslog.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
415
     echo "                echo 'After=network.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
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
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
417
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
417
     echo "                echo '[Service]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
418
     echo "                echo '[Service]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
418
     echo "                echo 'Type=simple' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
419
     echo "                echo 'Type=simple' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
419
     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
420
     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
421
     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
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
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
424
     echo "                echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
424
     echo "                echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
425
     echo "                echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
425
     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

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

555
     echo 'Description=WifiStartup (Start wifi networking)' >> $systemd_file
555
     echo 'Description=WifiStartup (Start wifi networking)' >> $systemd_file
556
     echo 'After=syslog.target' >> $systemd_file
556
     echo 'After=syslog.target' >> $systemd_file
557
     echo 'After=network.target' >> $systemd_file
557
     echo 'After=network.target' >> $systemd_file
558
+    echo 'After=remote-fs.target' >> $systemd_file
558
     echo '' >> $systemd_file
559
     echo '' >> $systemd_file
559
     echo '[Service]' >> $systemd_file
560
     echo '[Service]' >> $systemd_file
560
     echo 'Type=simple' >> $systemd_file
561
     echo 'Type=simple' >> $systemd_file
561
     echo 'User=root' >> $systemd_file
562
     echo 'User=root' >> $systemd_file
562
     echo 'Group=root' >> $systemd_file
563
     echo 'Group=root' >> $systemd_file
563
     echo 'WorkingDirectory=/root' >> $systemd_file
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
     echo '' >> $systemd_file
566
     echo '' >> $systemd_file
566
     echo '[Install]' >> $systemd_file
567
     echo '[Install]' >> $systemd_file
567
     echo 'WantedBy=multi-user.target' >> $systemd_file
568
     echo 'WantedBy=multi-user.target' >> $systemd_file

+ 2
- 0
src/freedombone-wifi 查看文件

141
     if [ ! $NODOWN ]; then
141
     if [ ! $NODOWN ]; 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
145
+        sleep 5
144
     fi
146
     fi
145
     update_wifi_adaptors
147
     update_wifi_adaptors
146
     if [ ! $IFACE ]; then
148
     if [ ! $IFACE ]; then