[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
28/37: gnu: u-boot-sifive-unmatched: Build with opensbi.
From: |
guix-commits |
Subject: |
28/37: gnu: u-boot-sifive-unmatched: Build with opensbi. |
Date: |
Tue, 2 Nov 2021 03:27:16 -0400 (EDT) |
efraim pushed a commit to branch wip-riscv
in repository guix.
commit 30c0c141abb41b9a2f6f24c1a70f25bde5dd936d
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Aug 31 10:31:35 2021 +0300
gnu: u-boot-sifive-unmatched: Build with opensbi.
* gnu/packages/bootloaders.scm (u-boot-sifive-unmatched)[arguments]: Add
phase to set location of opensbi firmware.
[inputs]: Add opensbi-firmware-fu540.
---
gnu/packages/bootloaders.scm | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index bb66868..e00599b 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -918,7 +918,21 @@ to Novena upstream, does not load u-boot.img from the
first partition.")
(make-u-boot-package "sifive_unleashed" "riscv64-linux-gnu"))
(define-public u-boot-sifive-unmatched
- (make-u-boot-package "sifive_unmatched" "riscv64-linux-gnu"))
+ (let ((base (make-u-boot-package "sifive_unmatched" "riscv64-linux-gnu")))
+ (package
+ (inherit base)
+ (arguments
+ (substitute-keyword-arguments (package-arguments base)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (add-after 'unpack 'set-environment
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((opensbi (string-append (assoc-ref inputs "firmware")
+ "/fw_dynamic.bin")))
+ (setenv "OPENSBI" opensbi))))))))
+ (inputs
+ `(("firmware" ,opensbi-sifive-fu540)
+ ,@(package-inputs base))))))
(define-public u-boot-rock64-rk3328
(let ((base (make-u-boot-package "rock64-rk3328" "aarch64-linux-gnu")))
- 08/37: gnu: openblas: Fix building on riscv64-linux., (continued)
- 08/37: gnu: openblas: Fix building on riscv64-linux., guix-commits, 2021/11/02
- 16/37: gnu: lapack: Fix building on riscv64-linux., guix-commits, 2021/11/02
- 13/37: gnu: openlibm: Remove riscv64-linux from supported systems., guix-commits, 2021/11/02
- 14/37: gnu: texlive-bin: Fix building on riscv64-linux., guix-commits, 2021/11/02
- 20/37: gnu: libaio: Fix test suite on riscv64-linux., guix-commits, 2021/11/02
- 21/37: gnu: libfaketime: Adjust flags on riscv64-linux., guix-commits, 2021/11/02
- 23/37: gnu: mozjs-60: Add support for riscv64-linux., guix-commits, 2021/11/02
- 22/37: gnu: qemu: Skip some tests on riscv64-linux., guix-commits, 2021/11/02
- 24/37: gnu: webrtc-audio-processing: Fix riscv64 detection., guix-commits, 2021/11/02
- 29/37: gnu: dtc: Build without valgrind on riscv64-linux., guix-commits, 2021/11/02
- 28/37: gnu: u-boot-sifive-unmatched: Build with opensbi.,
guix-commits <=
- 26/37: system: system-linux-image-file-name: Set kernel name for riscv64-linux., guix-commits, 2021/11/02
- 31/37: gnu: make-opensbi-package: Fix native building., guix-commits, 2021/11/02
- 34/37: build-system/meson: Fix cross-building to riscv64-linux., guix-commits, 2021/11/02
- 15/37: gnu: lz4: Build on riscv64-linux without valgrind., guix-commits, 2021/11/02
- 12/37: gnu: openblas-ilp64: Add riscv64-linux as a supported architecture., guix-commits, 2021/11/02
- 17/37: gnu: texlive-latex-base: Skip JIT formats on riscv64-linux., guix-commits, 2021/11/02
- 19/37: gnu: Use libunwind-next for riscv64-linux., guix-commits, 2021/11/02
- 18/37: gnu: Add libunwind-next., guix-commits, 2021/11/02
- 25/37: gnu: nss: Adjust make-flags for riscv64-linux., guix-commits, 2021/11/02
- 27/37: gnu: make-opensbi-package: Adjust installed files., guix-commits, 2021/11/02