1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Merge pull request #3708 from holta/wifi-driver-removal

1-prep/tasks/hardware.yml: Comment out "NUC6" WiFi driver
This commit is contained in:
A Holt 2024-02-09 08:58:40 -05:00 committed by GitHub
commit 7e88735445
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,17 +7,18 @@
when: first_run and rpi_model != "none" when: first_run and rpi_model != "none"
- name: Check if the identifier for Intel's NUC6 built-in WiFi is present # 2024-02-09: Code below appears stale for Shanti's #3707 hardware
shell: "lsusb | grep 8087:0a2b | wc | awk '{print $1}'" #- name: Check if the identifier for Intel's NUC6 built-in WiFi is present
register: usb_NUC6 # shell: "lsusb | grep 8087:0a2b | wc | awk '{print $1}'"
ignore_errors: True # register: usb_NUC6
# ignore_errors: True
- name: Download {{ iiab_download_url }}/iwlwifi-8000C-13.ucode to /lib/firmware for built-in WiFi on NUC6 #
get_url: #- name: Download {{ iiab_download_url }}/iwlwifi-8000C-13.ucode to /lib/firmware for built-in WiFi on NUC6
url: "{{ iiab_download_url }}/iwlwifi-8000C-13.ucode" # https://download.iiab.io/packages # get_url:
dest: /lib/firmware # url: "{{ iiab_download_url }}/Old/iwlwifi-8000C-13.ucode" # https://download.iiab.io/packages
timeout: "{{ download_timeout }}" # dest: /lib/firmware
when: usb_NUC6.stdout|int > 0 # timeout: "{{ download_timeout }}"
# when: usb_NUC6.stdout|int > 0
- name: "Look for any WiFi devices present: ls -la /sys/class/net/*/phy80211 | cut -d/ -f5" - name: "Look for any WiFi devices present: ls -la /sys/class/net/*/phy80211 | cut -d/ -f5"