summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.org b/README.org
index dc13104..e98e84a 100644
--- a/README.org
+++ b/README.org
@@ -177,14 +177,13 @@ is exactly equivalent to:
177 177
178Some Broadcom wireless hardware requires a proprietary kernel module in 178Some Broadcom wireless hardware requires a proprietary kernel module in
179addition to firmware. To use such hardware you will also need to add a service 179addition to firmware. To use such hardware you will also need to add a service
180to load that module on boot, blacklist conflicting kernel modules, and while not 180to load that module on boot and blacklist conflicting kernel modules:
181required, it is recommended to stay with Linux LTS releases:
182 181
183#+BEGIN_SRC scheme 182#+BEGIN_SRC scheme
184 (use-modules (nongnu packages linux)) 183 (use-modules (nongnu packages linux))
185 184
186 (operating-system 185 (operating-system
187 (kernel linux-lts) 186 (kernel linux)
188 ;; Blacklist conflicting kernel modules. 187 ;; Blacklist conflicting kernel modules.
189 (kernel-arguments '("modprobe.blacklist=b43,b43legacy,ssb,bcm43xx,brcm80211,brcmfmac,brcmsmac,bcma")) 188 (kernel-arguments '("modprobe.blacklist=b43,b43legacy,ssb,bcm43xx,brcm80211,brcmfmac,brcmsmac,bcma"))
190 (kernel-loadable-modules (list broadcom-sta)) 189 (kernel-loadable-modules (list broadcom-sta))