[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#68355] [PATCH 6/8] gnu: make-crust-package: Use or1k-elf as target.
From: |
Jean-Pierre De Jesus DIAZ |
Subject: |
[bug#68355] [PATCH 6/8] gnu: make-crust-package: Use or1k-elf as target. |
Date: |
Wed, 10 Jan 2024 00:14:40 +0100 |
* gnu/packages/firmware.scm (make-crust-package): Use or1k-elf as the
target.
Change-Id: I6c8bf053527f1e12e35402f18cebf8e75557c788
---
gnu/packages/firmware.scm | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index 30422a573c..e62f29993a 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -1210,13 +1210,13 @@ (define make-crust-package
(build-system gnu-build-system)
(arguments
(list
+ #:target "or1k-elf"
#:tests? #f ;no test suite
- #:make-flags
- #~(list "CROSS_COMPILE=or1k-elf-"
- "V=1"
- "HOSTAR=ar"
- "HOSTCC=gcc"
- "LEX=flex")
+ #:make-flags #~'("CROSS_COMPILE=or1k-elf-"
+ "V=1"
+ "HOSTAR=ar"
+ "HOSTCC=gcc"
+ "LEX=flex")
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
@@ -1230,13 +1230,7 @@ (define make-crust-package
(install-file file (string-append #$output
"/libexec")))
(find-files "." "(scp\\.bin|\\.config)$")))))))
- ;; The firmware is cross-compiled using a "bare bones" compiler (no
libc).
- ;; Use our own tool chain for that.
- (native-inputs
- (list bison
- (cross-gcc "or1k-elf")
- (cross-binutils "or1k-elf")
- flex))
+ (native-inputs (list bison flex))
(home-page "https://github.com/crust-firmware/crust")
(synopsis "System control processor firmware for Allwinner sunxi boards")
(description "Crust improves battery life and thermal performance by
--
2.41.0
- [bug#68355] [PATCH 0/8] guix: Add or1k-elf platform., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 4/8] gnu: make-crust-package: Memoize., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 1/8] guix: Add ork1-elf platform., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 6/8] gnu: make-crust-package: Use or1k-elf as target.,
Jean-Pierre De Jesus DIAZ <=
- [bug#68355] [PATCH 2/8] gnu: cross-gcc-toolchain: Use fixed name., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 5/8] gnu: make-crust-package: Update to 0.6., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 7/8] gnu: Add make-crust-tools., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 3/8] gnu: Add gcc-cross-or1k-elf-toolchain., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH 8/8] gnu: make-crust-package: Unite firmware and tools., Jean-Pierre De Jesus DIAZ, 2024/01/09
- [bug#68355] [PATCH v2 1/9] guix: Add ork1-elf platform., Jean-Pierre De Jesus DIAZ, 2024/01/19