[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
36/37: gnu: Add u-boot-sifive-unmatched-bootloader.
From: |
guix-commits |
Subject: |
36/37: gnu: Add u-boot-sifive-unmatched-bootloader. |
Date: |
Tue, 2 Nov 2021 03:27:18 -0400 (EDT) |
efraim pushed a commit to branch wip-riscv
in repository guix.
commit 7825516e5ded9372f4326f1cdfd910468faef44c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sat Sep 4 21:38:57 2021 +0300
gnu: Add u-boot-sifive-unmatched-bootloader.
* gnu/bootloader/u-boot.scm (u-boot-sifive-unmatched-bootloader): New
variable.
---
gnu/bootloader/u-boot.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm
index 6cad33b..ad0003e 100644
--- a/gnu/bootloader/u-boot.scm
+++ b/gnu/bootloader/u-boot.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -42,7 +43,8 @@
u-boot-puma-rk3399-bootloader
u-boot-rock64-rk3328-bootloader
u-boot-rockpro64-rk3399-bootloader
- u-boot-wandboard-bootloader))
+ u-boot-wandboard-bootloader
+ u-boot-sifive-unmatched-bootloader))
(define install-u-boot
#~(lambda (bootloader root-index image)
@@ -127,6 +129,16 @@
(define install-pinebook-pro-rk3399-u-boot install-rockpro64-rk3399-u-boot)
+(define install-sifive-unmatched-u-boot
+ #~(lambda (bootloader root-index image)
+ (let ((spl (string-append bootloader "/libexec/spl/u-boot-spl.bin"))
+ (u-boot (string-append bootloader "/libexec/u-boot.itb")))
+ ;;
https://source.denx.de/u-boot/u-boot/-/blob/master/doc/board/sifive/unmatched.rst
+ (write-file-on-device spl (stat:size (stat spl))
+ image (* 34 512))
+ (write-file-on-device u-boot (stat:size (stat u-boot))
+ image (* 2082 512)))))
+
;;;
@@ -255,3 +267,9 @@
(inherit u-boot-bootloader)
(package u-boot-pinebook-pro-rk3399)
(disk-image-installer install-pinebook-pro-rk3399-u-boot)))
+
+(define u-boot-sifive-unmatched-bootloader
+ (bootloader
+ (inherit u-boot-bootloader)
+ (package u-boot-sifive-unmatched)
+ (disk-image-installer install-sifive-unmatched-u-boot)))
- 26/37: system: system-linux-image-file-name: Set kernel name for riscv64-linux., (continued)
- 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
- 36/37: gnu: Add u-boot-sifive-unmatched-bootloader.,
guix-commits <=
- 37/37: gnu: libx264: Fix building on riscv64-linux., guix-commits, 2021/11/02
- 30/37: gnu: php: Skip tests failing on riscv64-linux., guix-commits, 2021/11/02
- 32/37: gnu: postgresql: Fix building on riscv64-linux., guix-commits, 2021/11/02
- 33/37: gnu: isc-dhcp: Fix building on riscv64-linux., guix-commits, 2021/11/02
- 35/37: gnu: gtk+: Remove some more failing tests., guix-commits, 2021/11/02