mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
bootloader: grub: Refer to the native 'grub-mklayout' and font file.
* gnu/bootloader/grub.scm (eye-candy): Refer to the native FONT-FILE. (keyboard-layout-file): Refer to the native 'grub-mklayout'.
This commit is contained in:
parent
6296e0c0f1
commit
a8b8ca6fd3
1 changed files with 2 additions and 2 deletions
|
@ -176,7 +176,7 @@ (define (setup-gfxterm config font-file)
|
|||
(if (memq 'gfxterm (bootloader-configuration-terminal-outputs config))
|
||||
#~(format #f "if loadfont ~a; then
|
||||
setup_gfxterm
|
||||
fi~%" #$font-file)
|
||||
fi~%" #+font-file)
|
||||
""))
|
||||
|
||||
(define (theme-colors type)
|
||||
|
@ -237,7 +237,7 @@ (define builder
|
|||
|
||||
;; 'grub-kbdcomp' passes all its arguments but '-o' to 'ckbcomp'
|
||||
;; (from the 'console-setup' package).
|
||||
(invoke #$(file-append grub "/bin/grub-mklayout")
|
||||
(invoke #+(file-append grub "/bin/grub-mklayout")
|
||||
"-i" #+(keyboard-layout->console-keymap layout)
|
||||
"-o" #$output))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue