diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 3 |
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) |