guix-commits
[Top][All Lists]
Advanced

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

branch master updated: system: Fix typo that breaks grub.cfg generation.


From: guix-commits
Subject: branch master updated: system: Fix typo that breaks grub.cfg generation.
Date: Tue, 09 Jun 2020 01:29:45 -0400

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 535a6be  system: Fix typo that breaks grub.cfg generation.
535a6be is described below

commit 535a6be2e59e02585548194ab82b80012d8a9714
Author: Royce Strange <royball@disroot.org>
AuthorDate: Mon Jun 8 20:12:24 2020 -0500

    system: Fix typo that breaks grub.cfg generation.
    
    * gnu/system.scm (boot-parameters->menu-entry): Delete quote to evalutate 
and
    get kernel boot parameters.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/system.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/system.scm b/gnu/system.scm
index 21d0fbd..081e0f2 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -400,7 +400,7 @@ The object has its kernel-arguments extended in order to 
make it bootable."
      (device (boot-parameters-store-device conf))
      (device-mount-point (boot-parameters-store-mount-point conf))
      (linux (and (not multiboot?) kernel))
-     (linux-arguments (if (not multiboot?) '
+     (linux-arguments (if (not multiboot?)
                           (boot-parameters-kernel-arguments conf)
                           '()))
      (initrd (boot-parameters-initrd conf))



reply via email to

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