mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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>
This commit is contained in:
parent
eef859e853
commit
535a6be2e5
1 changed files with 1 additions and 1 deletions
|
@ -400,7 +400,7 @@ (define (boot-parameters->menu-entry conf)
|
|||
(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))
|
||||
|
|
Loading…
Reference in a new issue