[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60224] [PATCH v5 07/13] gnu: u-boot-firefly-rk3399: Use gexps and f
From: |
Maxim Cournoyer |
Subject: |
[bug#60224] [PATCH v5 07/13] gnu: u-boot-firefly-rk3399: Use gexps and fix build. |
Date: |
Sun, 15 Jan 2023 22:25:38 -0500 |
* gnu/packages/bootloaders.scm (u-boot-firefly-rk3399) [arguments]: Use gexps.
[native-inputs]: Use modify-inputs and turn into...
[inputs]: ... this.
---
(no changes since v4)
Changes in v4:
- Move arm-trusted-firmware-rk3399 to inputs
gnu/packages/bootloaders.scm | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index f3b3c91c47..624a832802 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1156,16 +1156,16 @@ (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)))))
- (native-inputs
- `(("firmware" ,arm-trusted-firmware-rk3399)
- ,@(package-native-inputs base))))))
+ #~(modify-phases #$phases
+ (add-after 'unpack 'set-environment
+ (lambda* (#:key native-inputs 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)))))
+ (inputs
+ (modify-inputs (package-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 v5 01/13] gnu: make-u-boot-package: Add a u-boot argument and use gexps., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 02/13] gnu: make-u-boot-package: Install .imx files., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 03/13] gnu: u-boot: Reduce the number of native inputs., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 04/13] gnu: make-uboot-package: Simplify build., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 06/13] gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 07/13] gnu: u-boot-firefly-rk3399: Use gexps and fix build.,
Maxim Cournoyer <=
- [bug#60224] [PATCH v5 05/13] gnu: make-u-boot-package: Allow disabling cross-compilation., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 08/13] gnu: make-u-boot-sunxi64-package: Use gexps and fix build., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 09/13] gnu: u-boot-rock64-rk3328: Use gexps and fix build., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 11/13] gnu: u-boot-rockpro64-rk3399: Use gexps and fix build., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 13/13] gnu: u-boot-puma-rk3399: Use gexps and fix build., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 12/13] gnu: make-arm-trusted-firmware: Simplify build., Maxim Cournoyer, 2023/01/15
- [bug#60224] [PATCH v5 10/13] gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels., Maxim Cournoyer, 2023/01/15
- bug#60224: [PATCH 0/9] Improvements to our u-boot tooling, Maxim Cournoyer, 2023/01/18