[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/09: gnu: Add make-crust-tools.
From: |
guix-commits |
Subject: |
08/09: gnu: Add make-crust-tools. |
Date: |
Mon, 22 Jan 2024 05:33:07 -0500 (EST) |
mothacehe pushed a commit to branch master
in repository guix.
commit 938f153784e17d055d73f1686b03c1f0642c8340
Author: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
AuthorDate: Fri Jan 19 14:54:47 2024 +0100
gnu: Add make-crust-tools.
* gnu/packages/firmware.scm (make-crust-tools): New procedure.
Change-Id: Iac05ecf1796e4c10692a423c12423ea9b078d141
---
gnu/packages/firmware.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index 129dd0dfdd..41fe55eb2e 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -1252,6 +1252,50 @@ AR100.")
;; Most files are dual-licensed "BSD-3 OR GPL2", a few are GPL2 only.
(license (list license:bsd-3 license:gpl2)))))
+(define make-crust-tools
+ (mlambda (platform firmware)
+ (package
+ (inherit firmware)
+ (name (string-append "crust-"
+ (string-replace-substring platform "_" "-")
+ "-tools"))
+ (arguments
+ (list #:make-flags
+ #~(list "V=1"
+ "LEX=flex"
+ (string-append "HOSTAR=" #$(ar-for-target))
+ (string-append "HOSTCC=" #$(cc-for-target)))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'do-not-build-tests
+ (lambda _
+ ;; Attempting to build the tools test binary on a
+ ;; non-aarch64 architecture fails with: "No cache
+ ;; cleaning implementation available for this
+ ;; architecture". Avoid building it (see:
+ ;; https://github.com/crust-firmware/crust/issues/182).
+ (substitute* "tools/Makefile"
+ (("tools-y \\+= test") ""))))
+ (replace 'configure
+ (lambda* (#:key inputs native-inputs #:allow-other-keys)
+ (copy-file (search-input-file inputs "/libexec/.config")
+ ".config")))
+ (replace 'build
+ (lambda* (#:key make-flags parallel-build?
+ #:allow-other-keys)
+ (apply invoke "make" "tools"
+ `(,@(if parallel-build?
+ `("-j"
+ ,(number->string (parallel-job-count)))
+ '())
+ ,@make-flags))))
+ (replace 'install
+ (lambda _
+ (install-file "build/tools/load"
+ (string-append #$output "/bin")))))))
+ (synopsis "Firmware for Allwinner sunxi SoCs (tools)")
+ (inputs (list firmware)))))
+
(define-public crust-pinebook
(make-crust-package "pinebook"))
- branch master updated (9f6aab9591 -> d264237d55), guix-commits, 2024/01/22
- 01/09: guix: Add ork1-elf platform., guix-commits, 2024/01/22
- 04/09: gnu: make-crust-package: Use shorter synopsis., guix-commits, 2024/01/22
- 03/09: gnu: Add gcc-cross-or1k-elf-toolchain., guix-commits, 2024/01/22
- 08/09: gnu: Add make-crust-tools.,
guix-commits <=
- 02/09: gnu: cross-gcc-toolchain: Use fixed name., guix-commits, 2024/01/22
- 05/09: gnu: make-crust-package: Memoize., guix-commits, 2024/01/22
- 07/09: gnu: make-crust-package: Use or1k-elf as target., guix-commits, 2024/01/22
- 09/09: gnu: make-crust-package: Unite firmware and tools., guix-commits, 2024/01/22
- 06/09: gnu: make-crust-package: Update to 0.6., guix-commits, 2024/01/22