[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60224] [PATCH v4 07/12] gnu: make-u-boot-sunxi64-package: Use gexps
From: |
Vagrant Cascadian |
Subject: |
[bug#60224] [PATCH v4 07/12] gnu: make-u-boot-sunxi64-package: Use gexps and adjust file name. |
Date: |
Thu, 12 Jan 2023 14:12:12 -0800 |
On 2023-01-11, Maxim Cournoyer wrote:
> * gnu/packages/bootloaders.scm (make-u-boot-sunxi64-package)
> [phases] {set-environment}: Replace bl31.bin with bl31.elf; bl31.elf doesn't
> exist anymore for some reason.
The code no longer mentions bl31.elf, but the commit comment still does!
> [native-inputs]: Turn into...
> [inputs]: ... this.
>
> ---
>
> Changes in v4:
> - Revert erroneously replaced firmware package
> - Revert bl31.bin -> bl31.elf change caused by the above
> - Make the arm-trusted-firmware-sun50i-a64 a host input
So fix the commit comment to reflect that...
> gnu/packages/bootloaders.scm | 18 +++++++-----------
> 1 file changed, 7 insertions(+), 11 deletions(-)
>
> diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
> index 87d5bcb824..0c5205fa86 100644
> --- a/gnu/packages/bootloaders.scm
> +++ b/gnu/packages/bootloaders.scm
> @@ -1010,17 +1010,13 @@ (define*-public (make-u-boot-sunxi64-package board
> triplet
> (arguments
> (substitute-keyword-arguments (package-arguments base)
> ((#:phases phases)
> - `(modify-phases ,phases
> - (add-after 'unpack 'set-environment
> - (lambda* (#:key native-inputs inputs #:allow-other-keys)
> - (let ((bl31
> - (string-append
> - (assoc-ref (or native-inputs inputs) "firmware")
> - "/bl31.bin")))
> - (setenv "BL31" bl31))))))))
> - (native-inputs
> - `(("firmware" ,arm-trusted-firmware-sun50i-a64)
> - ,@(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.bin"))))))))
> + (inputs
> + (modify-inputs (package-inputs base)
> + (append arm-trusted-firmware-sun50i-a64))))))
>
> (define-public u-boot-pine64-plus
> (make-u-boot-sunxi64-package "pine64_plus" "aarch64-linux-gnu"))
> --
> 2.38.1
signature.asc
Description: PGP signature
- [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 07/12] gnu: make-u-boot-sunxi64-package: Use gexps and adjust file name.,
Vagrant Cascadian <=
- [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, 2023/01/11
- [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