aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-time-machine.sh
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-11-12 23:13:34 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-11-17 16:54:47 +0900
commitd5107b0c5a52f52b92127f36879ffffdf037cae8 (patch)
tree83fe03e795543672df82e4b4539728aec309dbca /tests/guix-time-machine.sh
parent0e1ffbc7f5f060f89c890472377a6102f27f6e9b (diff)
downloadguix-d5107b0c5a52f52b92127f36879ffffdf037cae8.tar.gz
guix-d5107b0c5a52f52b92127f36879ffffdf037cae8.zip
gnu: libarchive/fixed: Do not export variable.
* gnu/packages/backup.scm (libarchive/fixed): Do not export variable; it's used by libarchive as its replacement and need not be exposed to the command line. Change-Id: Iad6f0b6badb3fa728a69663f69419505da393c56
Diffstat (limited to 'tests/guix-time-machine.sh')
0 files changed, 0 insertions, 0 deletions
82cf9257cd1f9c969fbba5eb1c336ac8b975cde'>system: Add store-directory-prefix to boot-parameters....Fixes <http://issues.guix.gnu.org/44196> * gnu/machine/ssh.scm (roll-back-managed-host): Use boot-parameters-store-directory-prefix. * gnu/system.scm (define-module): Export boot-parameters-store-directory-prefix. (<boot-parameters>)[store-directory-prefix]: New field. It is used to generate the correct paths when /gnu/store is installed on a btrfs subvolume whose name doesn't match the final runtime path, as the bootloader doesn't have knowledge about the final mounting points. [boot-parameters-store-directory-prefix]: New accessor. (read-boot-parameters): Read directory-prefix from store field. (operating-system-boot-parameters-file): Add directory-prefix to store field. * guix/scripts/system.scm (reinstall-bootloader): Use boot-parameters-store-directory-prefix. * test/boot-parameters.scm (%default-btrfs-subvolume, %default-store-directory-prefix): New variables. (%grub-boot-parameters): Use %default-store-directory-prefix. (%default-operating-system): Use %default-btrfs-subvolume. (test-boot-parameters): Add directory-prefix. (test optional fields): Add test for directory-prefix. (test os store-directory-prefix): New test. Miguel Ángel Arruga Vivas 2020-10-18system: Add locale to boot-parameters....* gnu/system.scm (define-module)[export]: Add boot-parameters-locale. (<boot-parameters>)[locale]: New field. [boot-parameters-locale]: New accessor. (read-boot-parameters): Read locale field. (operating-system-boot-parameters): Provide operating-system locale to boot-parameters record. (opeating-system-boot-parameters-file): Likewise. * Makefile.am (SCM_TESTS): Add tests/boot-parameters.scm. * tests/boot-parameters.scm: New test file. Miguel Ángel Arruga Vivas