aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/musl.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2017-10-31 00:49:32 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2017-11-01 01:02:03 +0100
commit63ae4800de4fcee20573024f0e7fffca7cbc8dc5 (patch)
tree84e05a003762cd343384ff1d862db0593dd7ee34 /gnu/packages/musl.scm
parentbc8bd40e6ac082aa301065f80b06c9f203092ce3 (diff)
downloadguix-63ae4800de4fcee20573024f0e7fffca7cbc8dc5.tar.gz
guix-63ae4800de4fcee20573024f0e7fffca7cbc8dc5.zip
download: Refresh the cpan.org mirror list.
* guix/download.scm (%mirrors)[cpan]: Update the list of CPAN mirrors (of which several are dead) with a more-or-less geographically diverse selection.
Diffstat (limited to 'gnu/packages/musl.scm')
0 files changed, 0 insertions, 0 deletions
support for chain-loader. Signed-off-by: Julien Lepiller <julien@lepiller.eu> tiantian 2022-06-24image: Add support for 32bit UEFI....* gnu/bootloader/grub.scm (grub-efi32-bootloader): New variable. (install-grub-efi32): New variable. * gnu/build/bootloader.scm (install-efi): Add a 'targets' keyword argument. (install-efi-loader): Likewise. * gnu/build/image.scm (initialize-efi32-partition): New procedure. * gnu/packages/bootloaders.scm (grub-efi32): New variable. * gnu/system/image.scm (esp32-partition): New variable (efi32-disk-image): New variable. (efi32-raw-image-type): New variable. (system-disk-image)[partition-image]: Set '#:grub-efi32' when calling the partition initializer. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Denis 'GNUtoo' Carikli 2022-06-06bootloader: grub: Add removable grub-efi bootloader option....For single-disk installs (external USBs) and for amnesiac UEFIs, Guix is not found using its default Grub EFI bootloader location of /boot/efi/EFI/Guix/grubx64.efi means the Guix install will not be found. To handle this, we can place the bootloader file in the UEFI specification location, overwriting any other OS that may have placed a file there. This location is namely /boot/efi/EFI/BOOT/BOOTX64.efi. Grub has explicit support for this location/situation with the `--removable` flag. * gnu/bootloader/grub.scm (install-grub-efi-removable) (grub-efi-removable-bootloader): New variables. * doc/guix.texi (Bootloader Configuration): Document it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Karl Hallsby