From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1es2kz-0008Lh-Cz for guix-patches@gnu.org; Sat, 03 Mar 2018 03:43:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1es2kw-0005AT-9T for guix-patches@gnu.org; Sat, 03 Mar 2018 03:43:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33911) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1es2kw-0005AL-5r for guix-patches@gnu.org; Sat, 03 Mar 2018 03:43:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1es2kv-0001e5-SE for guix-patches@gnu.org; Sat, 03 Mar 2018 03:43:01 -0500 Subject: [bug#30629] [PATCH 0/5] Detect missing modules in the initrd Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180227141720.12513-1-ludo@gnu.org> <20180227222632.42bcf52c@scratchpost.org> <87tvu2w2vg.fsf@gnu.org> <20180227235027.00bc79b1@scratchpost.org> <20180301124655.72f6ca52@scratchpost.org> <87tvtz6hk4.fsf@gnu.org> <20180301145450.72b9be4c@scratchpost.org> <87h8pyhbzf.fsf@gnu.org> <20180302185040.27a59894@scratchpost.org> Date: Sat, 03 Mar 2018 09:42:44 +0100 In-Reply-To: <20180302185040.27a59894@scratchpost.org> (Danny Milosavljevic's message of "Fri, 2 Mar 2018 18:50:40 +0100") Message-ID: <87sh9hbldn.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Danny Milosavljevic Cc: 30629-done@debbugs.gnu.org Danny Milosavljevic skribis: > I've cloned master and checked it again, everything is fine except for th= e test failures :-> Oops! > It's not so bad, don't worry. > > -------------------------------------------------------------------------= ----------------------- > $ make TESTS=3Dseparate-store-os check-system > [...] > Service cow-store has been started. > + mkdir /mnt/etc > + cp /etc/target-config.scm /mnt/etc/config.scm > + guix system init /mnt/etc/config.scm /mnt --no-substitutes > /mnt/etc/config.scm:1:300: error: you need these modules in the initrd fo= r /dev/vdb2: virtio_blk virtio_pci > environment variable `PATH' set to `/gnu/store/hrwkb74sxa9lpfljgi12b5xsaq= rcx8x3-qemu-minimal-2.11.1/bin' > QEMU runs as PID 9 > connected to QEMU's monitor > read QEMU monitor prompt > connected to guest REPL > marionette is ready > > ;;; (uname #("Linux" "gnu" "4.15.7-gnu" "#1 SMP 1" "x86_64")) > note: keeping build directory `/tmp/guix-build-installation.drv-1' > builder for `/gnu/store/b4ddq7grgyn48q1j2gw6hah92bvhjymw-installation.drv= ' failed with exit code 1 > @ build-failed /gnu/store/b4ddq7grgyn48q1j2gw6hah92bvhjymw-installation.d= rv - 1 builder for `/gnu/store/b4ddq7grgyn48q1j2gw6hah92bvhjymw-installatio= n.drv' failed with exit code 1 > cannot build derivation `/gnu/store/709x4gzkfdzpnqgsqj7lh35pqnj9vvy5-sepa= rate-store-os.drv': 1 dependencies couldn't be built > TOTAL: 1 > FAIL: /gnu/store/skxfrvcynva5fwq7w4rg0g8c5qc771lb-separate-store-os > -------------------------------------------------------------------------= ----------------------- > > I think it's right in that: > > /mnt/etc/config.scm:1:300: error: you need these modules in the initrd fo= r /dev/vdb2: virtio_blk virtio_pci I moved them to =E2=80=98%base-initrd-modules=E2=80=99 so that =E2=80=98gui= x system=E2=80=99 knows about them. I fixed other issues as well: eac026e5c * linux-initrd: Add virtio modules to '%base-initrd-modules'. f850e0da8 * system: beaglebone-black: Use 'initrd-modules'. 5a3716aeb * vm: Add missing modules to the 'expression->derivation-in-lin= ux-vm' initrd. 3cb3a4e6e * linux-initrd: 'file-system-modules' returns the right module = list. Apologies for the breakage! Thanks, Ludo=E2=80=99.