GNU bug report logs -
#48314
[PATCH] Install guix system on Raspberry Pi
Previous Next
Reported by: Stefan <stefan-guix <at> vodafonemail.de>
Date: Sun, 9 May 2021 15:33:02 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
Message #71 received at 48314 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
phodina schreef op do 14-04-2022 om 09:25 [+0000]:
> (let* ((srcarch
> - ,(system->linux-srcarch (or (%current-target-
> system)
> + $#(system->linux-srcarch (or (%current-
it's #$, not $#
> target-system)
> (%current-
> system))))
> (configs (string-append "arch/" srcarch
> "/configs/"))
> (guix_defconfig (string-append configs
> "guix_defconfig")))
> - ,(cond
> + $#(cond
likewise
> ((not defconfig)
> - `(begin
> + $~(begin
in this case #~
> ;; Call the original 'configure phase.
> - (apply (assoc-ref ,phases 'configure)
> arguments)
> + (apply (assoc-ref $#phases 'configure)
> arguments)
#$
> ;; Save a defconfig file.
> (invoke "make" "savedefconfig")
> ;; Move the saved defconfig to the proper
> location.
> @@ -1309,19 +1309,18 @@ (define*-public (modify-linux #:key name
> guix_defconfig)))
> ((string? defconfig)
> ;; Use another existing defconfig from the Linux
> sources.
> - `(rename-file (string-append configs ,defconfig)
> + $~(rename-file (string-append configs
> $#defconfig)
#~ and #$
> guix_defconfig))
> (else
> ;; Copy the defconfig input to the proper
> location.
> '(copy-file (assoc-ref inputs "guix_defconfig")
> guix_defconfig)))
> - (modify-defconfig guix_defconfig ',configs)
> - ,@(if extra-version
> - `((setenv "EXTRAVERSION"
> - ,(string-append "-" extra-
> version)))
> + (modify-defconfig guix_defconfig '$#configs)
> + $#@(if extra-version
#$@
> + $~((setenv "EXTRAVERSION"
#~
> + $#(string-append "-" extra-
> version)))
#$
> '())
> - (invoke "make" "guix_defconfig"))
> - #t))))))
> + (invoke "make" "guix_defconfig"))))))))
Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 2 years and 165 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.