mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 09:37:03 +01:00
gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels.
* gnu/packages/bootloaders.scm (u-boot-sifive-unmatched) [arguments]: Use gexps. Use search-input-file. [inputs]: Remove labels. Use modify-inputs. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
e7d82f4722
commit
4dd0378d47
1 changed files with 7 additions and 8 deletions
|
@ -1119,15 +1119,14 @@ (define-public u-boot-sifive-unmatched
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'unpack 'set-environment
|
(add-after 'unpack 'set-environment
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((opensbi (string-append (assoc-ref inputs "firmware")
|
(setenv "OPENSBI" (search-input-file inputs
|
||||||
"/fw_dynamic.bin")))
|
"fw_dynamic.bin"))))))))
|
||||||
(setenv "OPENSBI" opensbi))))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("firmware" ,opensbi-generic)
|
(modify-inputs (package-inputs base)
|
||||||
,@(package-inputs base))))))
|
(append opensbi-generic))))))
|
||||||
|
|
||||||
(define-public u-boot-rock64-rk3328
|
(define-public u-boot-rock64-rk3328
|
||||||
(let ((base (make-u-boot-package "rock64-rk3328" "aarch64-linux-gnu")))
|
(let ((base (make-u-boot-package "rock64-rk3328" "aarch64-linux-gnu")))
|
||||||
|
|
Loading…
Reference in a new issue