[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/13: gnu: make-uboot-package: Simplify build.
From: |
guix-commits |
Subject: |
04/13: gnu: make-uboot-package: Simplify build. |
Date: |
Wed, 18 Jan 2023 21:08:31 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit c6a8b1384d1be19e3dca0e50b5b184aace4f2d06
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Dec 8 09:40:48 2022 -0500
gnu: make-uboot-package: Simplify build.
* gnu/packages/bootloaders.scm (make-u-boot-package) <same-arch?>: Rename
procedure to 'native-build?'.
[native-inputs]: Remove field.
[arguments]: Specify the #:target argument, when not natively building.
Adjust for the above renaming.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/bootloaders.scm | 19 +++++++------------
1 file changed, 7 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 7ec26dda05..b7a31c8b48 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -863,9 +863,9 @@ optional DEFCONFIG file and optional configuration changes
from CONFIGS.
NAME-SUFFIX is appended to the package name, while APPEND-DESCRIPTION is
appended to the package description. U-BOOT can be used when a fork or a
different version of U-Boot must be used."
- (let ((same-arch? (lambda ()
- (string=? (%current-system)
- (gnu-triplet->nix-system triplet)))))
+ (let ((native-build? (lambda ()
+ (string=? (%current-system)
+ (gnu-triplet->nix-system triplet)))))
(package
(inherit u-boot)
(name (string-append "u-boot-"
@@ -876,16 +876,11 @@ different version of U-Boot must be used."
(string-append (package-description u-boot)
"\n\n" append-description)
(package-description u-boot)))
- (native-inputs
- ;; Note: leave the native u-boot inputs first, so that a user can
- ;; override the cross-gcc and cross-binutils packages.
- `(,@(package-native-inputs u-boot)
- ,@(if (not (same-arch?))
- `(("cross-gcc" ,(cross-gcc triplet))
- ("cross-binutils" ,(cross-binutils triplet)))
- `())))
+ (build-system gnu-build-system)
(arguments
(substitute-keyword-arguments (package-arguments u-boot)
+ ((#:target _ #f)
+ (and (not (native-build?)) triplet))
((#:modules modules '())
`((ice-9 ftw)
(srfi srfi-1)
@@ -902,7 +897,7 @@ different version of U-Boot must be used."
((#:make-flags make-flags '())
#~(list "HOSTCC=gcc"
"KBUILD_VERBOSE=1"
- #$@(if (not (same-arch?))
+ #$@(if (not (native-build?))
(list (string-append "CROSS_COMPILE=" triplet "-"))
'())
#$@make-flags))
- branch master updated (358ae8e12e -> 12f1b5fe4e), guix-commits, 2023/01/18
- 05/13: gnu: make-u-boot-package: Allow disabling cross-compilation., guix-commits, 2023/01/18
- 03/13: gnu: u-boot: Reduce the number of native inputs., guix-commits, 2023/01/18
- 06/13: gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., guix-commits, 2023/01/18
- 11/13: gnu: u-boot-rockpro64-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 12/13: gnu: make-arm-trusted-firmware: Simplify build., guix-commits, 2023/01/18
- 13/13: gnu: u-boot-puma-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 04/13: gnu: make-uboot-package: Simplify build.,
guix-commits <=
- 01/13: gnu: make-u-boot-package: Add a u-boot argument and use gexps., guix-commits, 2023/01/18
- 02/13: gnu: make-u-boot-package: Install .imx files., guix-commits, 2023/01/18
- 07/13: gnu: u-boot-firefly-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 08/13: gnu: make-u-boot-sunxi64-package: Use gexps and fix build., guix-commits, 2023/01/18
- 09/13: gnu: u-boot-rock64-rk3328: Use gexps and fix build., guix-commits, 2023/01/18
- 10/13: gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels., guix-commits, 2023/01/18