From: ludo@gnu.org (Ludovic Courtès)
To: Pierre Neidhardt <mail@ambrevar.xyz>
Cc: "help-guix@gnu.org" <help-guix@gnu.org>
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 [thread overview]
Message-ID: <874leevrsp.fsf@gnu.org> (raw)
In-Reply-To: <87d0t8xh5a.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Thu, 20 Sep 2018 18:33:53 +0200")
Hello Pierre,
Pierre Neidhardt <mail@ambrevar.xyz> 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’.
next prev parent reply other threads:[~2018-09-24 15:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-20 16:33 Custom kernel error: kernel module not found "xts" "/gnu/store/...-linux-custom-4.14.69/lib/modules" Pierre Neidhardt
2018-09-24 15:28 ` Ludovic Courtès [this message]
2018-09-24 16:35 ` Pierre Neidhardt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874leevrsp.fsf@gnu.org \
--to=ludo@gnu.org \
--cc=help-guix@gnu.org \
--cc=mail@ambrevar.xyz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.