mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
Revert "gnu: grub: Fix unicode font loading when booting over TFTP."
This reverts commit 03fb57ff77
, which
breaks most system tests. Specifically, grub.cfg.drv fails to build:
ERROR: In procedure canonicalize-path:
In procedure canonicalize-path: No such file or directory
This commit is contained in:
parent
190187326a
commit
7a2897149d
1 changed files with 3 additions and 12 deletions
|
@ -191,18 +191,9 @@ (define (theme-colors type)
|
|||
(define font-file
|
||||
(let* ((bootloader (bootloader-configuration-bootloader config))
|
||||
(grub (bootloader-package bootloader)))
|
||||
;; The bootloader-package may be a profile with only symlinks.
|
||||
;; If network booting, then a symlink to the font may not work on the
|
||||
;; server side. Therefore we canonicalize the file name of the font.
|
||||
;; TODO: The font gets installed by (install-grub-efi-netboot) and
|
||||
;; (install-grub-efi). The installed font could be referred to as
|
||||
;; "unicode". But it is currently unclear if (install-grub-disk-image)
|
||||
;; and (install-grub) both install the font as well.
|
||||
;; Actually this should be preferred.
|
||||
#~(canonicalize-path
|
||||
#+(normalize-file (file-append grub "/share/grub/unicode.pf2")
|
||||
store-mount-point
|
||||
store-directory-prefix))))
|
||||
(normalize-file (file-append grub "/share/grub/unicode.pf2")
|
||||
store-mount-point
|
||||
store-directory-prefix)))
|
||||
|
||||
(define image
|
||||
(normalize-file (grub-background-image config)
|
||||
|
|
Loading…
Reference in a new issue