[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60224] [PATCH v4 09/12] gnu: u-boot-sifive-unmatched: Use gexps and
From: |
Maxim Cournoyer |
Subject: |
[bug#60224] [PATCH v4 09/12] gnu: u-boot-sifive-unmatched: Use gexps and remove inputs. |
Date: |
Wed, 11 Jan 2023 15:44:30 -0500 |
* gnu/packages/bootloaders.scm (u-boot-sifive-unmatched)
[arguments]: Use gexps. Use search-input-file.
[inputs]: Remove labels. Use modify-inputs.
---
(no changes since v1)
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 464c1f5729..b2e15b88f1 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1128,15 +1128,14 @@ (define-public u-boot-sifive-unmatched
(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")))
--
2.38.1
- [bug#60224] [PATCH v4 01/12] gnu: make-u-boot-package: Add a u-boot argument and use gexps., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 02/12] gnu: make-u-boot-package: Install .imx files., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 03/12] gnu: make-uboot-package: Simplify build., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 07/12] gnu: make-u-boot-sunxi64-package: Use gexps and adjust file name., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 06/12] gnu: u-boot-firefly-rk3399: Use gexps and fix cross-build., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 04/12] gnu: make-u-boot-package: Allow disabling cross-compilation., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 05/12] gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 08/12] gnu: u-boot-rock64-rk3328: Fix build., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 09/12] gnu: u-boot-sifive-unmatched: Use gexps and remove inputs.,
Maxim Cournoyer <=
- [bug#60224] [PATCH v4 10/12] gnu: u-boot-rockpro64-rk3399: Fix build., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 12/12] gnu: u-boot-puma-rk3399: Fix build., Maxim Cournoyer, 2023/01/11
- [bug#60224] [PATCH v4 11/12] gnu: make-arm-trusted-firmware: Simplify build., Maxim Cournoyer, 2023/01/11