summaryrefslogtreecommitdiff
path: root/gnu/bootloader/u-boot.scm
diff options
context:
space:
mode:
authorZheng Junjie <zhengjunjie@iscas.ac.cn>2024-03-19 23:18:35 +0800
committerLudovic Courtès <ludo@gnu.org>2024-03-31 22:26:21 +0200
commit64187b65d3acb13b91dd83fc8e7209c8ef538078 (patch)
tree33bb46907f92b9da906b9c197ebcd0a7dc5f0005 /gnu/bootloader/u-boot.scm
parentd727c39e23facfbb201217d58c383523305e9009 (diff)
bootloader: Add u-boot-qemu-riscv64-bootloader.
* gnu/bootloader/u-boot.scm (u-boot-qemu-riscv64-bootloader): New variable. Change-Id: If6622838d2250c90a26380849b92387aa7122fbb Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/bootloader/u-boot.scm')
-rw-r--r--gnu/bootloader/u-boot.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm
index d20aabd5389..8e7cc05191d 100644
--- a/gnu/bootloader/u-boot.scm
+++ b/gnu/bootloader/u-boot.scm
@@ -6,6 +6,7 @@
6;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> 6;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
7;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il> 7;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
8;;; Copyright © 2023 Herman Rimm <herman_rimm@protonmail.com> 8;;; Copyright © 2023 Herman Rimm <herman_rimm@protonmail.com>
9;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
9;;; 10;;;
10;;; This file is part of GNU Guix. 11;;; This file is part of GNU Guix.
11;;; 12;;;
@@ -47,6 +48,7 @@
47 u-boot-rock64-rk3328-bootloader 48 u-boot-rock64-rk3328-bootloader
48 u-boot-rockpro64-rk3399-bootloader 49 u-boot-rockpro64-rk3399-bootloader
49 u-boot-sifive-unmatched-bootloader 50 u-boot-sifive-unmatched-bootloader
51 u-boot-qemu-riscv64-bootloader
50 u-boot-ts7970-q-2g-1000mhz-c-bootloader 52 u-boot-ts7970-q-2g-1000mhz-c-bootloader
51 u-boot-wandboard-bootloader)) 53 u-boot-wandboard-bootloader))
52 54
@@ -157,6 +159,12 @@
157 (write-file-on-device u-boot (stat:size (stat u-boot)) 159 (write-file-on-device u-boot (stat:size (stat u-boot))
158 image (* 2082 512))))) 160 image (* 2082 512)))))
159 161
162(define install-qemu-riscv64-u-boot
163 #~(lambda (bootloader device mount-point)
164 (let ((u-boot.bin (string-append bootloader "/libexec/u-boot.bin"))
165 (install-dir (string-append mount-point "/boot")))
166 (install-file u-boot.bin install-dir))))
167
160 168
161 169
162;;; 170;;;
@@ -307,3 +315,10 @@
307 (inherit u-boot-bootloader) 315 (inherit u-boot-bootloader)
308 (package u-boot-sifive-unmatched) 316 (package u-boot-sifive-unmatched)
309 (disk-image-installer install-sifive-unmatched-u-boot))) 317 (disk-image-installer install-sifive-unmatched-u-boot)))
318
319(define u-boot-qemu-riscv64-bootloader
320 (bootloader
321 (inherit u-boot-bootloader)
322 (package u-boot-qemu-riscv64)
323 (installer install-qemu-riscv64-u-boot)
324 (disk-image-installer #f)))