[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60224] [PATCH v3 08/11] gnu: u-boot-rock64-rk3328: Fix build.
From: |
Maxim Cournoyer |
Subject: |
[bug#60224] [PATCH v3 08/11] gnu: u-boot-rock64-rk3328: Fix build. |
Date: |
Sun, 1 Jan 2023 19:46:33 -0500 |
* gnu/packages/bootloaders.scm (u-boot-rock64-rk3328)
[arguments]: Use gexps.
[phases] {set-environment}: Also look in native-inputs.
[native-inputs]: Remove input labels and use modify-inputs.
---
(no changes since v1)
gnu/packages/bootloaders.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index a19d1ebf17..d1c04db66a 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1141,14 +1141,14 @@ (define-public u-boot-rock64-rk3328
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'set-environment
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((bl31 (search-input-file inputs "/bl31.elf")))
- (setenv "BL31" bl31))))))))
+ #~(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"))))))))
(native-inputs
- `(("firmware" ,arm-trusted-firmware-rk3328)
- ,@(package-native-inputs base))))))
+ (modify-inputs (package-native-inputs base)
+ (append arm-trusted-firmware-rk3328))))))
(define-public u-boot-firefly-rk3399
(let ((base (make-u-boot-package "firefly-rk3399" "aarch64-linux-gnu")))
--
2.38.1
- [bug#60224] [PATCH v3 02/11] gnu: make-u-boot-package: Install .imx files., (continued)
- [bug#60224] [PATCH v3 02/11] gnu: make-u-boot-package: Install .imx files., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 03/11] gnu: make-uboot-package: Simplify build., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 05/11] gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 07/11] gnu: make-u-boot-sunxi64-package: Use gexps and adjust file name., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 04/11] gnu: make-u-boot-package: Allow disabling cross-compilation., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 10/11] gnu: u-boot-puma-rk3399: Use make-u-boot-sunxi64-package., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 06/11] gnu: u-boot-firefly-rk3399: Use gexps and fix cross-build., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 08/11] gnu: u-boot-rock64-rk3328: Fix build.,
Maxim Cournoyer <=
- [bug#60224] [PATCH v3 11/11] gnu: u-boot-rockpro64-rk3399: Fix build., Maxim Cournoyer, 2023/01/01
- [bug#60224] [PATCH v3 09/11] gnu: u-boot-sifive-unmatched: Use gexps and remove inputs., Maxim Cournoyer, 2023/01/01