[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60224] [PATCH 5/9] gnu: u-boot-firefly-rk3399: Use gexps and fix cr
From: |
Maxim Cournoyer |
Subject: |
[bug#60224] [PATCH 5/9] gnu: u-boot-firefly-rk3399: Use gexps and fix cross-build. |
Date: |
Tue, 20 Dec 2022 13:34:23 -0500 |
* gnu/packages/bootloaders.scm (u-boot-firefly-rk3399) [arguments]: Use gexps.
[phases] {set-environment}: Look for the bl31.elf in native-inputs, useful when
cross-compiling.
---
gnu/packages/bootloaders.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 7e78b9af41..ae847080d0 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1080,16 +1080,17 @@ (define-public u-boot-firefly-rk3399
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'set-environment
- (lambda* (#:key inputs #:allow-other-keys)
- (setenv "BL31" (search-input-file inputs "/bl31.elf"))))
- ;; Phases do not succeed on the bl31 ELF.
- (delete 'strip)
- (delete 'validate-runpath)))))
+ #~(modify-phases #$phases
+ (add-after 'unpack 'set-environment
+ (lambda* (#:key native-inputs inputs #:allow-other-keys)
+ (setenv "BL31" (search-input-file (or native-inputs inputs)
+ "bl31.elf"))))
+ ;; Phases do not succeed on the bl31 ELF.
+ (delete 'strip)
+ (delete 'validate-runpath)))))
(native-inputs
- `(("firmware" ,arm-trusted-firmware-rk3399)
- ,@(package-native-inputs base))))))
+ (modify-inputs (package-native-inputs base)
+ (append arm-trusted-firmware-rk3399))))))
(define-public u-boot-rockpro64-rk3399
(let ((base (make-u-boot-package "rockpro64-rk3399" "aarch64-linux-gnu"
--
2.38.1
- [bug#60224] [PATCH 0/9] Improvements to our u-boot tooling, Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 1/9] gnu: make-u-boot-package: Add a u-boot argument and use gexps., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 4/9] gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 9/9] gnu: u-boot-puma-rk3399: Use make-u-boot-sunxi64-package., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 7/9] gnu: u-boot-rock64-rk3328: Fix build., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 3/9] gnu: make-uboot-package: Simplify build., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 8/9] gnu: u-boot-sifive-unmatched: Use gexps and remove inputs., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 2/9] gnu: make-u-boot-package: Install .imx files., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 5/9] gnu: u-boot-firefly-rk3399: Use gexps and fix cross-build.,
Maxim Cournoyer <=
- [bug#60224] [PATCH 6/9] gnu: make-u-boot-sunxi64-package: Use gexps and adjust file name., Maxim Cournoyer, 2022/12/20
- [bug#60224] [PATCH 0/9] Improvements to our u-boot tooling, Ricardo Wurmus, 2022/12/29