diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-11-06 12:11:40 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-06 12:12:51 +0100 |
commit | 198a7ac02fe52acfed996cb66d3c79e2e8595747 (patch) | |
tree | 26cc13dddc874c26c6d392ae91f310bfb1dff284 /gnu | |
parent | 81ffe6377385a3035d75cf9c8a1b61f32796c2ad (diff) | |
download | patches-198a7ac02fe52acfed996cb66d3c79e2e8595747.tar patches-198a7ac02fe52acfed996cb66d3c79e2e8595747.tar.gz |
tests: install: Increase root partition size.
1.2G had become slightly too small on x86_64.
This is a followup to 8dfb0c969e513276c632b8d26fb3601fa02993ca.
* gnu/tests/install.scm (%simple-installation-script)
(%extlinux-gpt-installation-script)
(%simple-installation-script-for-/dev/vda): Switch from 1.2G to 1.4G.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/tests/install.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 124d176181..22c9554705 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -138,7 +138,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts guix build isc-dhcp 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 mkfs.ext4 -L my-root /dev/vdb2 @@ -163,7 +163,7 @@ guix --version export GUIX_BUILD_OPTIONS=--no-grafts guix build isc-dhcp parted --script /dev/vdb mklabel gpt \\ - mkpart ext2 1M 1.2G \\ + mkpart ext2 1M 1.4G \\ set 1 legacy_boot on mkfs.ext4 -L my-root -O '^64bit' /dev/vdb1 mount /dev/vdb1 /mnt @@ -365,7 +365,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts guix build isc-dhcp parted --script /dev/vda 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 mkfs.ext4 -L my-root /dev/vda2 |