diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-07-06 16:15:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-06 16:17:24 +0200 |
commit | 8dfb0c969e513276c632b8d26fb3601fa02993ca (patch) | |
tree | 34b1d3289ac5b3c1ff947ff9feedd2a236ee3ab8 /gnu/tests/install.scm | |
parent | c3ab921eed2a471022e9863a94ea521508782e53 (diff) | |
download | patches-8dfb0c969e513276c632b8d26fb3601fa02993ca.tar patches-8dfb0c969e513276c632b8d26fb3601fa02993ca.tar.gz |
tests: encrypted-root-os: Increase root partition size.
1.2G had become slightly too small on x86_64.
* gnu/tests/install.scm (%encrypted-root-installation-script): Increase
root partition size to 1.3G.
Diffstat (limited to 'gnu/tests/install.scm')
-rw-r--r-- | gnu/tests/install.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 9f6baa1a48..124d176181 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -661,7 +661,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts ls -l /run/current-system/gc-roots parted --script /dev/vdb mklabel gpt \\ mkpart primary ext2 1M 3M \\ - mkpart primary ext2 3M 1.2G \\ + mkpart primary ext2 3M 1.4G \\ set 1 boot on \\ set 1 bios_grub on echo -n thepassphrase | \\ |