summary refs log tree commit diff
path: root/gnu/system
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-03-15 13:14:29 +0100
committerMathieu Othacehe <othacehe@gnu.org>2022-03-15 13:14:29 +0100
commit2543cb485479d29700ac14762875db084b90ed54 (patch)
tree2a37ea42b93bc57053ab8a6dbf10ad6677cbf1af /gnu/system
parentaf8d568f82a677640ba6cc3228a896082a14aac3 (diff)
downloadguix-2543cb485479d29700ac14762875db084b90ed54.tar.gz
images: novena: Fix build.
* gnu/system/images/novena.scm (novena-barebones-os)[kernel]: Use the
linux-libre-arm-generic kernel.
[initrd-modules]: Do not specify any modules as sdhci-esdhc-imx, ahci_imx and
i2c-dev are built-in in the arm-generic kernel.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/images/novena.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/images/novena.scm b/gnu/system/images/novena.scm
index 3ce62fbf3b..5b625e56c5 100644
--- a/gnu/system/images/novena.scm
+++ b/gnu/system/images/novena.scm
@@ -41,8 +41,8 @@
     (bootloader (bootloader-configuration
                  (bootloader u-boot-novena-bootloader)
                  (targets '("/dev/vda"))))
-    (initrd-modules '("sdhci-esdhc-imx" "ahci_imx" "i2c-dev"))
-    ;(kernel linux-libre-arm-generic)
+    (initrd-modules '())
+    (kernel linux-libre-arm-generic)
     (kernel-arguments '("console=ttymxc1,115200"))
     (file-systems (cons (file-system
                           (device (file-system-label "my-root"))