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
to load that module on boot, and blacklist conflicting kernel modules:
#+BEGIN_SRC scheme
- (use-modules (nongnu packages linux)
- (nongnu services kernel-modules))
+ (use-modules (nongnu packages linux))
(operating-system
(kernel linux)
;; Blacklist conflicting kernel modules.
(kernel-arguments '("modprobe.blacklist=b43,b43legacy,ssb,bcm43xx,brcm80211,brcmfmac,brcmsmac,bcma"))
+ (kernel-loadable-modules (list broadcom-sta))
(firmware (cons* broadcom-bt-firmware
%base-firmware))
- ...
- (services
- (cons* (load-broadcom-sta-service)
- ...
- %desktop-services)))
+ ...)
#+END_SRC
* Contributing