GNU bug report logs -
#41769
[PATCH] system: Fix typo that breaks grub.cfg generation
Previous Next
Reported by: Royce Strange <royball <at> disroot.org>
Date: Tue, 9 Jun 2020 01:14:01 UTC
Severity: normal
Tags: patch
Done: maxim.cournoyer <at> gmail.com
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/system.scm (boot-parameters->menu-entry):
Delete quote to evalutate and get kernel boot parameters.
---
gnu/system.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/system.scm b/gnu/system.scm
index 21d0fbd190..081e0f2fb3 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))
--
2.26.2
This bug report was last modified 4 years and 352 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.