[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: bootloader: Add u-boot-qemu-riscv64-bootloader.
From: |
guix-commits |
Subject: |
03/09: bootloader: Add u-boot-qemu-riscv64-bootloader. |
Date: |
Sun, 31 Mar 2024 17:05:15 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 64187b65d3acb13b91dd83fc8e7209c8ef538078
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Tue Mar 19 23:18:35 2024 +0800
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>
---
gnu/bootloader/u-boot.scm | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm
index d20aabd538..8e7cc05191 100644
--- a/gnu/bootloader/u-boot.scm
+++ b/gnu/bootloader/u-boot.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023 Herman Rimm <herman_rimm@protonmail.com>
+;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -47,6 +48,7 @@
u-boot-rock64-rk3328-bootloader
u-boot-rockpro64-rk3399-bootloader
u-boot-sifive-unmatched-bootloader
+ u-boot-qemu-riscv64-bootloader
u-boot-ts7970-q-2g-1000mhz-c-bootloader
u-boot-wandboard-bootloader))
@@ -157,6 +159,12 @@
(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"))
+ (install-dir (string-append mount-point "/boot")))
+ (install-file u-boot.bin install-dir))))
+
;;;
@@ -307,3 +315,10 @@
(inherit u-boot-bootloader)
(package u-boot-sifive-unmatched)
(disk-image-installer install-sifive-unmatched-u-boot)))
+
+(define u-boot-qemu-riscv64-bootloader
+ (bootloader
+ (inherit u-boot-bootloader)
+ (package u-boot-qemu-riscv64)
+ (installer install-qemu-riscv64-u-boot)
+ (disk-image-installer #f)))
- branch master updated (4d79a9cd6b -> 16c7130835), guix-commits, 2024/03/31
- 03/09: bootloader: Add u-boot-qemu-riscv64-bootloader.,
guix-commits <=
- 04/09: vm: use #$ for kernel-arguments., guix-commits, 2024/03/31
- 05/09: vm: When target riscv64-linux, use u-boot-qemu-riscv64-bootloader., guix-commits, 2024/03/31
- 02/09: gnu: shepherd: Update to 0.10.4., guix-commits, 2024/03/31
- 07/09: linux-initrd: don't add hid-apple module for riscv64-linux., guix-commits, 2024/03/31
- 01/09: ui: Autoload some more., guix-commits, 2024/03/31
- 06/09: gnu: linux-libre-riscv64-generic: add more options., guix-commits, 2024/03/31
- 08/09: vm: add arguments to use virt machine type for qemu-riscv64., guix-commits, 2024/03/31
- 09/09: vm: If not the same local architecture, don't enable kvm., guix-commits, 2024/03/31