From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: 01/01: hydra: Work around import problem. Date: Mon, 29 Jan 2018 14:53:03 +0100 Message-ID: <87efm8ojpc.fsf@gnu.org> References: <20180129122403.22184.83539@vcs0.savannah.gnu.org> <20180129122403.D1E1420ABC@vcs0.savannah.gnu.org> 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]:36875) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eg9rz-0001Dz-1T for guix-devel@gnu.org; Mon, 29 Jan 2018 08:53:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eg9ru-0001Hx-6Q for guix-devel@gnu.org; Mon, 29 Jan 2018 08:53:11 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:48786) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eg9rt-0001HI-VF for guix-devel@gnu.org; Mon, 29 Jan 2018 08:53:06 -0500 In-Reply-To: <20180129122403.D1E1420ABC@vcs0.savannah.gnu.org> (Danny Milosavljevic's message of "Mon, 29 Jan 2018 07:24:03 -0500 (EST)") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org, Danny Milosavljevic Hi Danny, dannym@scratchpost.org (Danny Milosavljevic) skribis: > commit ebd6a6445fa7d3db64795840a607815abbd56880 > Author: Danny Milosavljevic > Date: Mon Jan 29 13:23:07 2018 +0100 > > hydra: Work around import problem. >=20=20=20=20=20 > * build-aux/hydra/gnu-system.scm: qemu-jobs: Work around import probl= em. >=20=20=20=20=20 > Follow-up to 1fe805b290f26db477bcd49be91af54f6c5d061f. > --- > build-aux/hydra/gnu-system.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.= scm > index 46f09d1..0886d5f 100644 > --- a/build-aux/hydra/gnu-system.scm > +++ b/build-aux/hydra/gnu-system.scm > @@ -166,7 +166,7 @@ system.") > (define (adjust-bootloader os) > (if (member system %u-boot-systems) > (operating-system (inherit os) > - (bootloader (bootloader-configuration > + (bootloader ((@ (gnu bootloader) bootloader-configuration) > (bootloader u-boot-bootloader) > (target "/dev/null")))) What was the problem exactly? It=E2=80=99s best to add: (use-modules (gnu bootloader)) than to use =E2=80=98@=E2=80=99. Ludo=E2=80=99.