From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eK6GJ-0006O3-8y for guix-patches@gnu.org; Wed, 29 Nov 2017 12:35:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eK6GF-0006c6-60 for guix-patches@gnu.org; Wed, 29 Nov 2017 12:35:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:56799) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eK6GF-0006bb-2J for guix-patches@gnu.org; Wed, 29 Nov 2017 12:35:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eK6GE-0007w0-JM for guix-patches@gnu.org; Wed, 29 Nov 2017 12:35:02 -0500 Subject: [bug#29409] [PATCH] tests: install: Increase extlinux install partition size. References: <877euhtjkj.fsf@gmail.com> In-Reply-To: <877euhtjkj.fsf@gmail.com> Resent-Message-ID: From: m.othacehe@gmail.com Date: Wed, 29 Nov 2017 18:34:33 +0100 Message-Id: <1511976873-26867-1-git-send-email-m.othacehe@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29409@debbugs.gnu.org From: Mathieu Othacehe * gnu/tests/install.scm (%extlinux-gpt-installation-script): Increase partition size from 1G to 2G. 1G is not enough anymore to initialize the system. --- gnu/tests/install.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 0e97de0..fa9d9c6 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -173,7 +173,7 @@ guix --version export GUIX_BUILD_OPTIONS=--no-grafts guix build isc-dhcp parted --script /dev/vdb mklabel gpt \\ - mkpart ext2 1M 1G \\ + mkpart ext2 1M 2G \\ set 1 legacy_boot on mkfs.ext4 -L my-root -O '^64bit' /dev/vdb1 mount /dev/vdb1 /mnt -- 2.7.4