mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
system: Remove circular dependency between (gnu system) and (gnu system grub).
Followup to 087efec496
.
* gnu/system.scm: (operating-system-bootcfg): Refer to (gnu system grub)
by module-ref.
This commit is contained in:
parent
c5196ac7ee
commit
f000828575
1 changed files with 5 additions and 3 deletions
|
@ -847,9 +847,11 @@ (define* (operating-system-bootcfg os #:optional (old-entries '()))
|
|||
(uuid->string (file-system-device root-fs))
|
||||
(file-system-device root-fs)))
|
||||
(entry (operating-system-boot-parameters os system root-device)))
|
||||
((@@ (gnu system grub) grub-configuration-file) (operating-system-bootloader os)
|
||||
(list entry)
|
||||
#:old-entries old-entries)))
|
||||
((module-ref (resolve-interface '(gnu system grub))
|
||||
'grub-configuration-file)
|
||||
(operating-system-bootloader os)
|
||||
(list entry)
|
||||
#:old-entries old-entries)))
|
||||
|
||||
(define (fs->boot-device fs)
|
||||
"Given FS, a <file-system> object, return a value suitable for use as the
|
||||
|
|
Loading…
Reference in a new issue