summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <[email protected]>2022-03-07 22:47:27 +0200
committerEfraim Flashner <[email protected]>2022-03-07 22:53:58 +0200
commit34ba6e0616a4f8cee672ea23a9ed6fbb1b155a4b (patch)
treeebd71673953092fb08ca283b595151ed4b4d2dc8 /gnu
parent027ce78933530020a2b1010a1ae9c73009301bc1 (diff)
system: Set kernel name for riscv64-linux.
* gnu/system.scm (system-linux-image-file-name): Add option for riscv64.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 432330c915..dc980312ab 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -11,7 +11,7 @@
;;; Copyright © 2020 Florian Pelz <[email protected]>
;;; Copyright © 2020, 2022 Maxim Cournoyer <[email protected]>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]>
-;;; Copyright © 2020 Efraim Flashner <[email protected]>
+;;; Copyright © 2020, 2022 Efraim Flashner <[email protected]>
;;; Copyright © 2021 Maxime Devos <[email protected]>
;;; Copyright © 2021 raid5atemyhomework <[email protected]>
;;;
@@ -658,6 +658,7 @@ See \"(guix) operating-system Reference\" for more details.~%")))
((string-prefix? "arm" target) "zImage")
((string-prefix? "mips" target) "vmlinuz")
((string-prefix? "aarch64" target) "Image")
+ ((string-prefix? "riscv64" target) "Image")
(else "bzImage")))
(define (operating-system-kernel-file os)