# Copyright (C) 2021 Wojtek Kosior # Redistribution terms are gathered in the `copyright' file. # This file is meant to be sourced in sh. ENDL=" " errcho() { echo "$@" >&2 } map_set_instr() { echo "$1__$2='$3'" } map_set() { eval "$(map_set_instr "$@")" } map_set_export() { eval "export $(map_set_instr "$@")" } map_get() { eval "echo \"\$$1__$2\"" } map_del_instr() { echo "unset $1__$2" } map_del() { eval "$(map_del_instr "$@")" } sanitize() { echo "$1" | tr /.- _ } s='main'>index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/bootloader.scm
AgeCommit message (Expand)Author
2024-01-14bootloader: grub: Add support for loading an additional initrd....Tomas Volf
2023-10-28profiles: Hooks honor the #:system parameter of ‘profile-derivation’....Ludovic Courtès
2022-12-01gnu: bootloader: Rework chaining, add grub-efi-netboot-removable-bootloader....Stefan
2022-09-08gnu: bootloader: Report error in menu-entry....tiantian
2022-09-08gnu: bootloader: Extend `<menu-entry>' for chain-loader....tiantian
2022-08-30bootloader: Wrap lines....Mathieu Othacehe
2022-08-30bootloader: Add device-tree-support? option....Reza Alizadeh Majd
2022-08-28bootloader: Convert device in menu-entry to proper sexp....Josselin Poiret
2022-08-21bootloader: Remove expired export....Tobias Geerinckx-Rice