mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
system: Rename (internal) grub-device to fs->boot-device.
* gnu/system.scm (grub-device): Rename to... (fs->boot-device): ... this. (operating-system-grub.cfg): Adapt. (operating-system-parameters-file): Adapt. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
07f812c404
commit
7085ca9690
1 changed files with 3 additions and 3 deletions
|
@ -746,7 +746,7 @@ (define* (operating-system-bootcfg os #:optional (old-entries '()))
|
|||
(label label)
|
||||
|
||||
;; The device where the kernel and initrd live.
|
||||
(device (grub-device store-fs))
|
||||
(device (fs->boot-device store-fs))
|
||||
(device-mount-point
|
||||
(file-system-mount-point store-fs))
|
||||
|
||||
|
@ -761,7 +761,7 @@ (define* (operating-system-bootcfg os #:optional (old-entries '()))
|
|||
(grub-configuration-file (operating-system-bootloader os) entries
|
||||
#:old-entries old-entries)))
|
||||
|
||||
(define (grub-device fs)
|
||||
(define (fs->boot-device fs)
|
||||
"Given FS, a <file-system> object, return a value suitable for use as the
|
||||
device in a <menu-entry>."
|
||||
(case (file-system-title fs)
|
||||
|
@ -787,7 +787,7 @@ (define (operating-system-parameters-file os)
|
|||
#$(operating-system-kernel-arguments os))
|
||||
(initrd #$initrd)
|
||||
(store
|
||||
(device #$(grub-device store))
|
||||
(device #$(fs->boot-device store))
|
||||
(mount-point #$(file-system-mount-point store))))
|
||||
#:set-load-path? #f)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue