[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 01/01: hydra: Work around import problem.
From: |
Mark H Weaver |
Subject: |
Re: 01/01: hydra: Work around import problem. |
Date: |
Mon, 29 Jan 2018 09:47:01 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Hi Danny,
Danny Milosavljevic <address@hidden> writes:
> On Mon, 29 Jan 2018 14:53:03 +0100
> address@hidden (Ludovic Courtès) wrote:
>
>> address@hidden (Danny Milosavljevic) skribis:
>>
>> > commit ebd6a6445fa7d3db64795840a607815abbd56880
>> > Author: Danny Milosavljevic <address@hidden>
>> > Date: Mon Jan 29 13:23:07 2018 +0100
>> >
>> > hydra: Work around import problem.
>> >
>> > * build-aux/hydra/gnu-system.scm: qemu-jobs: Work around import
>> > problem.
>> >
>> > 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’s best to add:
>>
>> (use-modules (gnu bootloader))
>>
>> than to use address@hidden
>>
>> Ludo’.
>
> Previously, I had added (gnu bootloader) to the existing (use-modules) form
> in the file. That got me this:
[...]
> In unknown file:
> 0 (%resolve-variable (7 . bootloader-configuration) #<mod?>)
>
> 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