summaryrefslogtreecommitdiffstats
path: root/roles/bootstrap/tasks/install-archlinux.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/bootstrap/tasks/install-archlinux.yml')
-rw-r--r--roles/bootstrap/tasks/install-archlinux.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/roles/bootstrap/tasks/install-archlinux.yml b/roles/bootstrap/tasks/install-archlinux.yml
index 02ba1f3..f4ce711 100644
--- a/roles/bootstrap/tasks/install-archlinux.yml
+++ b/roles/bootstrap/tasks/install-archlinux.yml
@@ -79,29 +79,3 @@
ansible.builtin.command:
cmd: "arch-chroot {{ mnt_root_path }} pacman -S --noconfirm python3"
changed_when: true
-
-- name: "Install broadcom-wl driver"
- ansible.builtin.command:
- cmd: "arch-chroot {{ mnt_root_path }} pacman -S --noconfirm broadcom-wl"
- changed_when: true
- when: bootstrap_mac
-
-- 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
- when: bootstrap_mac
-
-- name: "Load wl module at boot"
- ansible.builtin.copy:
- dest: "{{ mnt_root_path }}/etc/modules-load.d/broadcom-wl.conf"
- mode: "0644"
- content: |
- wl
- when: bootstrap_mac