浏览代码

Install atheros wifi firmware before the interactive installer begins

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

+ 3
- 0
src/freedombone 查看文件

@@ -72,6 +72,9 @@ if [ ! $COMPLETION_FILE ]; then
72 72
     COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
73 73
 fi
74 74
 
75
+# before the interactive config so that wifi adaptors may be detected
76
+setup_wifi_atheros
77
+
75 78
 if [[ $command_options == "menuconfig"* ]]; then
76 79
     if [[ "$2" == "--reset" ]]; then
77 80
         if [ -f $CONFIGURATION_FILE ]; then

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

@@ -39,6 +39,27 @@ WIFI_NETWORKS_FILE=~/${PROJECT_NAME}-wifi.cfg
39 39
 # repo for atheros AR9271 wifi driver
40 40
 ATHEROS_WIFI_REPO="https://github.com/qca/open-ath9k-htc-firmware.git"
41 41
 
42
+function setup_wifi_atheros {
43
+    atheros_drivers_file=drivers/ath9k_htc_driver_bbb.tar.gz
44
+    if [ ! -f $atheros_drivers_file ]; then
45
+        if [ ! -f ~/freedombone/$atheros_drivers_file ]; then
46
+            return
47
+        else
48
+            atheros_drivers_file=drivers/$atheros_drivers_file
49
+        fi
50
+    fi
51
+    if [ ! -d /lib/firmware ]; then
52
+        return
53
+    fi
54
+    if [ -f /lib/firmware/htc_9271.fw ]; then
55
+        return
56
+    fi
57
+    curr_dir=$(pwd)
58
+    cd /lib/firmware
59
+    tar -xzvf $atheros_drivers_file
60
+    cd $curr_dir
61
+}
62
+
42 63
 function setup_wifi {
43 64
     if [[ $SYSTEM_TYPE == "mesh"* ]]; then
44 65
         return