From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: 01/01: hydra: Work around import problem. Date: Mon, 29 Jan 2018 09:47:01 -0500 Message-ID: <87bmhcbu3e.fsf@netris.org> References: <20180129122403.22184.83539@vcs0.savannah.gnu.org> <20180129122403.D1E1420ABC@vcs0.savannah.gnu.org> <87efm8ojpc.fsf@gnu.org> <20180129150249.7a1a7140@scratchpost.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]:47762) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1egAij-0006El-1P for guix-devel@gnu.org; Mon, 29 Jan 2018 09:47:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1egAie-000595-6L for guix-devel@gnu.org; Mon, 29 Jan 2018 09:47:41 -0500 In-Reply-To: <20180129150249.7a1a7140@scratchpost.org> (Danny Milosavljevic's message of "Mon, 29 Jan 2018 15:02:49 +0100") 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: Danny Milosavljevic Cc: guix-devel@gnu.org Hi Danny, Danny Milosavljevic writes: > On Mon, 29 Jan 2018 14:53:03 +0100 > ludo@gnu.org (Ludovic Court=C3=A8s) wrote: > >> dannym@scratchpost.org (Danny Milosavljevic) skribis: >>=20 >> > 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 pr= oblem. >> >=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-syst= em.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"))))=20=20 >>=20 >> What was the problem exactly? It=E2=80=99s best to add: >>=20 >> (use-modules (gnu bootloader)) >>=20 >> than to use =E2=80=98@=E2=80=99. >>=20 >> Ludo=E2=80=99. > > Previously, I had added (gnu bootloader) to the existing (use-modules) fo= rm > in the file. That got me this: [...] > In unknown file: > 0 (%resolve-variable (7 . bootloader-configuration) #) > > ERROR: In procedure %resolve-variable: > ERROR: bootloader-configuration: unbound variable I strongly suspect that this evaluation error occurred for a commit _before_ you added (use-modules (gnu bootloader)), unless you have reason to believe otherwise. Mark