help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Custom kernel error: kernel module not found "xts" "/gnu/store/...-l


From: Ludovic Courtès
Subject: Re: Custom kernel error: kernel module not found "xts" "/gnu/store/...-linux-custom-4.14.69/lib/modules"
Date: Mon, 24 Sep 2018 17:28:06 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Hello Pierre,

Pierre Neidhardt <address@hidden> skribis:

> The list of module does not match the expectation I guess but I don't
> know what Guix is trying to do here.

There’s a list of modules that must be present in the initrd, specified
by the ‘initrd-modules’ field.  By default that list is:

--8<---------------cut here---------------start------------->8---
scheme@(guile-user)> ,use(gnu system linux-initrd)
scheme@(guile-user)> %base-initrd-modules
$2 = ("ahci" "usb-storage" "uas" "usbhid" "hid-generic" "hid-apple" "dm-crypt" 
"xts" "serpent_generic" "wp512" "nls_iso8859-1" "pata_acpi" "pata_atiixp" 
"isci" "virtio_pci" "virtio_balloon" "virtio_blk" "virtio_net" "virtio_console" 
"virtio-rng")
--8<---------------cut here---------------end--------------->8---

Since your kernel lacks the “xts” module, you may have to do:

  (operating-system
    ;; …
    (initrd-modules (delete "xts" %base-initrd-modules)))

HTH!

Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]