aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2023-01-05 00:04:27 +0100
committerLudovic Courtès <ludo@gnu.org>2023-01-19 17:54:49 +0100
commitb9d676e0ee7b52ef4bb202507ccc94b5cab590b2 (patch)
treec3301e7be9c3a31fb5e95b18ffe58db8df518bd2 /.editorconfig
parent88854b1a4e364263b0d3c0d1e87de1ce7da51d34 (diff)
downloadguix-b9d676e0ee7b52ef4bb202507ccc94b5cab590b2.tar.gz
guix-b9d676e0ee7b52ef4bb202507ccc94b5cab590b2.zip
gnu: nettle: Fix mingw cross-compilation.
* gnu/packages/nettle.scm (nettle-2) [move-static-libraries]: .dll.a files are not static libraries. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to '.editorconfig')
0 files changed, 0 insertions, 0 deletions
>...In order to be able to provide decryption keys for the LUKS device, they need to be available in the initial ram disk. However they cannot be stored inside the usual initrd, since it is stored in the store and being a world-readable (as files in the store are) is not a desired property for a initrd containing decryption keys. This commit adds an option to load additional initrd during the boot, one that is not stored inside the store and therefore can contain secrets. Since only grub supports encrypted /boot, only grub is modified to use the extra-initrd. There is no use case for the other bootloaders. * doc/guix.texi (Bootloader Configuration): Describe the new extra-initrd field. * gnu/bootloader.scm (<bootloader-configuration>): Add extra-initrd field. * gnu/bootloader/grub.scm (make-grub-configuration): Use the extra-initrd field. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I995989bb623bb594ccdafbf4a1a6de941bd4189f Tomas Volf 2023-12-22gnu: bootloader: Add orangepi-r1-plus-lts-rk3328 bootloader....* gnu/bootloader/u-boot.scm (install-orangepi-r1-plus-lts-rk3328-u-boot, u-boot-orangepi-r1-plus-lts-rk3328-bootloader): New variables. * gnu/packages/bootloaders.scm (u-boot-orangepi-r1-plus-lts-rk3328): New variable. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Herman Rimm