summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-04-20 11:43:23 +0200
committerLudovic Courtès <ludo@gnu.org>2019-04-21 00:51:18 +0200
commit785919121066a10b291d783b6903b5e368e992a8 (patch)
treee61ff71ce7c63a614ecfbc79666b67e732ca7d93 /gnu/system
parenta3e6cf987684cc7476b6ee544091c464378cbcd9 (diff)
install: Pass "modprobe.blacklist=radeon".
* gnu/system/install.scm (installation-os)[kernel-arguments]: New field.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/install.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index d887313132d..80b7fe8e69f 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -427,6 +427,12 @@ Access documentation at any time by pressing Alt-F2.\x1b[0m
427 (label (string-append "GNU Guix installation " 427 (label (string-append "GNU Guix installation "
428 (package-version guix))) 428 (package-version guix)))
429 429
430 ;; XXX: The AMD Radeon driver is reportedly broken, which makes kmscon
431 ;; non-functional:
432 ;; <https://lists.gnu.org/archive/html/guix-devel/2019-03/msg00441.html>.
433 ;; Thus, blacklist it.
434 (kernel-arguments '("modprobe.blacklist=radeon"))
435
430 (file-systems 436 (file-systems
431 ;; Note: the disk image build code overrides this root file system with 437 ;; Note: the disk image build code overrides this root file system with
432 ;; the appropriate one. 438 ;; the appropriate one.