mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
guix system: Always add zero previous entries in grub.cfg for 'init'.
* guix/scripts/system.scm (grub.cfg): Remove. (perform-action): Call 'operating-system-grub.cfg' with the empty list as the 2nd argument when ACTION is 'init.
This commit is contained in:
parent
4a1bf0907b
commit
328639e48f
1 changed files with 4 additions and 5 deletions
|
@ -284,10 +284,6 @@ (define* (system-derivation-for-action os action
|
|||
((disk-image)
|
||||
(system-disk-image os #:disk-image-size image-size))))
|
||||
|
||||
(define (grub.cfg os)
|
||||
"Return the GRUB configuration file for OS."
|
||||
(operating-system-grub.cfg os (previous-grub-entries)))
|
||||
|
||||
(define* (maybe-build drvs
|
||||
#:key dry-run? use-substitutes?)
|
||||
"Show what will/would be built, and actually build DRVS, unless DRY-RUN? is
|
||||
|
@ -317,7 +313,10 @@ (define* (perform-action action os
|
|||
#:full-boot? full-boot?
|
||||
#:mappings mappings))
|
||||
(grub (package->derivation grub))
|
||||
(grub.cfg (grub.cfg os))
|
||||
(grub.cfg (operating-system-grub.cfg os
|
||||
(if (eq? 'init action)
|
||||
'()
|
||||
(previous-grub-entries))))
|
||||
(drvs -> (if (and grub? (memq action '(init reconfigure)))
|
||||
(list sys grub grub.cfg)
|
||||
(list sys)))
|
||||
|
|
Loading…
Reference in a new issue