aboutsummaryrefslogtreecommitdiff
path: root/.mailmap
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2024-04-21 16:37:23 +0800
committerAndreas Enge <andreas@enge.fr>2024-10-19 15:40:55 +0200
commitefa273c7cd4846abb1591cc80cd2615eaa2dc015 (patch)
tree2ad801e0f3fdac09e1db80d112d14c9f0e948d73 /.mailmap
parent11fc2fc37721a29613577cc54b9002bad00e4384 (diff)
downloadguix-efa273c7cd4846abb1591cc80cd2615eaa2dc015.tar.gz
guix-efa273c7cd4846abb1591cc80cd2615eaa2dc015.zip
gnu: font-canada1500: Split outputs.
* gnu/packages/fonts.scm (font-canada1500)[outputs]: New field. Change-Id: If09b593e02e2f6ce447256a7561f423f448b5a65
Diffstat (limited to '.mailmap')
0 files changed, 0 insertions, 0 deletions
(cdr efi-targets)) ;; Graft the configuration file onto the image. (string-append "boot/grub/grub.cfg=" grub-config)))) (define* (install-efi-loader grub-efi esp #:key targets) "Install in ESP directory the given GRUB-EFI bootloader. Configure it to load the Grub bootloader located in the 'Guix_image' root partition. If TARGETS is set, use its car as the GRUB image format and its cdr as the output filename. Otherwise, use defaults for the host platform." (let ((grub-config "grub.cfg")) (call-with-output-file grub-config (lambda (port) ;; Create a tiny configuration file telling the embedded grub where to ;; load the real thing. XXX This is quite fragile, and can prevent ;; the image from booting when there's more than one volume with this ;; label present. Reproducible almost-UUIDs could reduce the risk ;; (not eliminate it). (format port "insmod part_msdos~@ insmod part_gpt~@ search --set=root --label Guix_image~@ configfile /boot/grub/grub.cfg~%"))) (install-efi grub-efi grub-config esp #:targets targets) (delete-file grub-config)))