Refactoring and vmdb2 improvements
This commit is contained in:
parent
e94c68854d
commit
f61468fff5
28 changed files with 1257 additions and 0 deletions
13
ansible/install-ap-optimized-firmware.yml
Normal file
13
ansible/install-ap-optimized-firmware.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
- name: Install chat
|
||||
hosts: all
|
||||
become: true
|
||||
tasks:
|
||||
- name: Set minimal firmware for cyfmac43455-sdio.bin
|
||||
# This loads a firmware that takes up less of the SRAM used by the WiFi chip, which allows more simultaneous connections (~19 instead of 4–8).
|
||||
ansible.builtin.command:
|
||||
cmd: update-alternatives --set cyfmac43455-sdio.bin /lib/firmware/cypress/cyfmac43455-sdio-minimal.bin
|
||||
register: firmware_update
|
||||
changed_when: firmware_update.rc == 0
|
||||
failed_when: firmware_update.rc != 0
|
||||
ignore_errors: yes
|
||||
Loading…
Add table
Add a link
Reference in a new issue