From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) 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 Message-ID: <874leevrsp.fsf@gnu.org> References: <87d0t8xh5a.fsf@ambrevar.xyz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48708) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g4SmU-0002u7-Fm for help-guix@gnu.org; Mon, 24 Sep 2018 11:28:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g4SmR-0002Lx-Aw for help-guix@gnu.org; Mon, 24 Sep 2018 11:28:14 -0400 In-Reply-To: <87d0t8xh5a.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Thu, 20 Sep 2018 18:33:53 +0200") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Pierre Neidhardt Cc: "help-guix@gnu.org" Hello Pierre, Pierre Neidhardt 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=E2=80=99s a list of modules that must be present in the initrd, speci= fied by the =E2=80=98initrd-modules=E2=80=99 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 =3D ("ahci" "usb-storage" "uas" "usbhid" "hid-generic" "hid-apple" "dm-c= rypt" "xts" "serpent_generic" "wp512" "nls_iso8859-1" "pata_acpi" "pata_ati= ixp" "isci" "virtio_pci" "virtio_balloon" "virtio_blk" "virtio_net" "virtio= _console" "virtio-rng") --8<---------------cut here---------------end--------------->8--- Since your kernel lacks the =E2=80=9Cxts=E2=80=9D module, you may have to d= o: (operating-system ;; =E2=80=A6 (initrd-modules (delete "xts" %base-initrd-modules))) HTH! Ludo=E2=80=99.