瀏覽代碼

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

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

39
 # repo for atheros AR9271 wifi driver
39
 # repo for atheros AR9271 wifi driver
40
 ATHEROS_WIFI_REPO="https://github.com/qca/open-ath9k-htc-firmware.git"
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
 function setup_wifi {
63
 function setup_wifi {
43
     if [[ $SYSTEM_TYPE == "mesh"* ]]; then
64
     if [[ $SYSTEM_TYPE == "mesh"* ]]; then
44
         return
65
         return