summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorAlex Griffin <a@ajgrf.com>2020-03-22 15:12:56 -0500
committerAlex Griffin <a@ajgrf.com>2020-03-22 15:16:02 -0500
commited867eb38669752a96b2617139415390acef1f2b (patch)
tree6f29a5dc2cde484aca5d23b72541ac055c9cb2e6 /README.org
parentb20c206810d9010972f2c0b8fed2d8e1484d838b (diff)
README.org: Don't recommend `load-broadcom-sta-service`.
Closes #26. * README.org: Replace `load-broadcom-sta-service` example with new `kernel-loadable-modules` field. * nongnu/services/kernel-modules.scm (load-broadcom-sta-service): Update docstring to recommend switching to `kernel-loadable-modules`.
Diffstat (limited to 'README.org')
-rw-r--r--README.org10
1 files changed, 3 insertions, 7 deletions
diff --git a/README.org b/README.org
index 6760109..2cab4ef 100644
--- a/README.org
+++ b/README.org
@@ -133,20 +133,16 @@ addition to firmware. To use such hardware you will also need to add a service
133to load that module on boot, and blacklist conflicting kernel modules: 133to load that module on boot, and blacklist conflicting kernel modules:
134 134
135#+BEGIN_SRC scheme 135#+BEGIN_SRC scheme
136 (use-modules (nongnu packages linux) 136 (use-modules (nongnu packages linux))
137 (nongnu services kernel-modules))
138 137
139 (operating-system 138 (operating-system
140 (kernel linux) 139 (kernel linux)
141 ;; Blacklist conflicting kernel modules. 140 ;; Blacklist conflicting kernel modules.
142 (kernel-arguments '("modprobe.blacklist=b43,b43legacy,ssb,bcm43xx,brcm80211,brcmfmac,brcmsmac,bcma")) 141 (kernel-arguments '("modprobe.blacklist=b43,b43legacy,ssb,bcm43xx,brcm80211,brcmfmac,brcmsmac,bcma"))
142 (kernel-loadable-modules (list broadcom-sta))
143 (firmware (cons* broadcom-bt-firmware 143 (firmware (cons* broadcom-bt-firmware
144 %base-firmware)) 144 %base-firmware))
145 ... 145 ...)
146 (services
147 (cons* (load-broadcom-sta-service)
148 ...
149 %desktop-services)))
150#+END_SRC 146#+END_SRC
151 147
152* Contributing 148* Contributing