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:
Danny Milosavljevic 2017-05-08 22:16:55 +02:00
parent c5196ac7ee
commit f000828575
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -847,7 +847,9 @@ (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)
((module-ref (resolve-interface '(gnu system grub))
'grub-configuration-file)
(operating-system-bootloader os)
(list entry)
#:old-entries old-entries)))