[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels.
From: |
guix-commits |
Subject: |
10/13: gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels. |
Date: |
Wed, 18 Jan 2023 21:08:32 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 4dd0378d4755b10b885292bb6840baa35548560b
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Dec 20 11:38:42 2022 -0500
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>
---
gnu/packages/bootloaders.scm | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 64af453844..d9f9672f77 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1119,15 +1119,14 @@ partition."))
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'set-environment
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((opensbi (string-append (assoc-ref inputs "firmware")
- "/fw_dynamic.bin")))
- (setenv "OPENSBI" opensbi))))))))
+ #~(modify-phases #$phases
+ (add-after 'unpack 'set-environment
+ (lambda* (#:key inputs #:allow-other-keys)
+ (setenv "OPENSBI" (search-input-file inputs
+ "fw_dynamic.bin"))))))))
(inputs
- `(("firmware" ,opensbi-generic)
- ,@(package-inputs base))))))
+ (modify-inputs (package-inputs base)
+ (append opensbi-generic))))))
(define-public u-boot-rock64-rk3328
(let ((base (make-u-boot-package "rock64-rk3328" "aarch64-linux-gnu")))
- 06/13: gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., (continued)
- 06/13: gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., guix-commits, 2023/01/18
- 11/13: gnu: u-boot-rockpro64-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 12/13: gnu: make-arm-trusted-firmware: Simplify build., guix-commits, 2023/01/18
- 13/13: gnu: u-boot-puma-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 04/13: gnu: make-uboot-package: Simplify build., guix-commits, 2023/01/18
- 01/13: gnu: make-u-boot-package: Add a u-boot argument and use gexps., guix-commits, 2023/01/18
- 02/13: gnu: make-u-boot-package: Install .imx files., guix-commits, 2023/01/18
- 07/13: gnu: u-boot-firefly-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 08/13: gnu: make-u-boot-sunxi64-package: Use gexps and fix build., guix-commits, 2023/01/18
- 09/13: gnu: u-boot-rock64-rk3328: Use gexps and fix build., guix-commits, 2023/01/18
- 10/13: gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels.,
guix-commits <=