guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/28: system: 'system-linux-image-file-name' takes an optional paramete


From: guix-commits
Subject: 01/28: system: 'system-linux-image-file-name' takes an optional parameter.
Date: Sat, 30 May 2020 11:20:11 -0400 (EDT)

janneke pushed a commit to branch wip-hurd-vm
in repository guix.

commit 113ba9d7a989508a8f9b30bd25cd3977c255824d
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed May 27 17:40:14 2020 +0200

    system: 'system-linux-image-file-name' takes an optional parameter.
    
    * gnu/system.scm (system-linux-image-file-name): Make 'target' an
    optional parameter.
---
 gnu/system.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/system.scm b/gnu/system.scm
index ac8bbd1..61cbaef 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -466,15 +466,15 @@ from the initrd."
   "Return the list of swap services for OS."
   (map swap-service (operating-system-swap-devices os)))
 
-(define* (system-linux-image-file-name)
-  "Return the basename of the kernel image file for SYSTEM."
-  ;; FIXME: Evaluate the conditional based on the actual current system.
-  (let ((target (or (%current-target-system) (%current-system))))
-    (cond
-     ((string-prefix? "arm" target) "zImage")
-     ((string-prefix? "mips" target) "vmlinuz")
-     ((string-prefix? "aarch64" target) "Image")
-     (else "bzImage"))))
+(define* (system-linux-image-file-name #:optional
+                                       (target (or (%current-target-system)
+                                                   (%current-system))))
+  "Return the basename of the kernel image file for TARGET."
+  (cond
+   ((string-prefix? "arm" target) "zImage")
+   ((string-prefix? "mips" target) "vmlinuz")
+   ((string-prefix? "aarch64" target) "Image")
+   (else "bzImage")))
 
 (define (operating-system-kernel-file os)
   "Return an object representing the absolute file name of the kernel image of



reply via email to

[Prev in Thread] Current Thread [Next in Thread]