blob: 73c98544a4e0a8bea8020526773e90b407c7bbe7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
- name: "Install broadcom-sta-dkms in chroot"
ansible.builtin.command:
cmd: "arch-chroot {{ mnt_root_path }} apt-get install -y broadcom-sta-dkms"
environment:
MAKEFLAGS: ""
changed_when: true
- name: "Blacklist modules conflicting with broadcom-wl"
ansible.builtin.copy:
dest: "{{ mnt_root_path }}/etc/modprobe.d/broadcom-wl.conf"
mode: "0644"
content: |
blacklist brcmfmac
blacklist brcmutil
blacklist b43
blacklist ssb
blacklist bcma
- name: "Load wl module at boot"
ansible.builtin.lineinfile:
path: "{{ mnt_root_path }}/etc/modules"
line: "wl"
create: true
mode: "0644"
|