diff mbox series

[bug#70892,5/6] bootloader: Add u-boot-starfive-visionfive2-bootloader.

Message ID 5bfd31610d97b7771fdcd6c2aa5c860fa3ad94ee.1715508730.git.zhengjunjie@iscas.ac.cn
State New
Headers show
Series Add visionfive2 support. | expand

Commit Message

Zheng Junjie May 12, 2024, 11:09 a.m. UTC
* gnu/bootloader/u-boot.scm (u-boot-starfive-visionfive2-bootloader): New variable.

Change-Id: I4b73906fe18d481644102c271f5e0883167b3a50
---
 gnu/bootloader/u-boot.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
diff mbox series

Patch

diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm
index 8e7cc05191..b5a9662573 100644
--- a/gnu/bootloader/u-boot.scm
+++ b/gnu/bootloader/u-boot.scm
@@ -49,6 +49,7 @@  (define-module (gnu bootloader u-boot)
             u-boot-rockpro64-rk3399-bootloader
             u-boot-sifive-unmatched-bootloader
             u-boot-qemu-riscv64-bootloader
+            u-boot-starfive-visionfive2-bootloader
             u-boot-ts7970-q-2g-1000mhz-c-bootloader
             u-boot-wandboard-bootloader))
 
@@ -159,6 +160,16 @@  (define install-sifive-unmatched-u-boot
         (write-file-on-device u-boot (stat:size (stat u-boot))
                               image (* 2082 512)))))
 
+(define install-starfive-visionfive2-u-boot
+  #~(lambda (bootloader root-index image)
+      (let ((spl (string-append
+                  bootloader "/libexec/spl/u-boot-spl.bin.normal.out"))
+            (u-boot (string-append bootloader "/libexec/u-boot.itb")))
+        (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)))))
+
 (define install-qemu-riscv64-u-boot
   #~(lambda (bootloader device mount-point)
       (let ((u-boot.bin (string-append bootloader "/libexec/u-boot.bin"))
@@ -316,6 +327,12 @@  (define u-boot-sifive-unmatched-bootloader
    (package u-boot-sifive-unmatched)
    (disk-image-installer install-sifive-unmatched-u-boot)))
 
+(define u-boot-starfive-visionfive2-bootloader
+  (bootloader
+   (inherit u-boot-bootloader)
+   (package u-boot-starfive-visionfive2)
+   (disk-image-installer install-starfive-visionfive2-u-boot)))
+
 (define u-boot-qemu-riscv64-bootloader
   (bootloader
    (inherit u-boot-bootloader)