From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#35783: Guile-Parted crashes the installer on i686-linux Date: Sat, 18 May 2019 15:44:11 +0200 Message-ID: <87lfz3vpw4.fsf@gnu.org> References: <87h89syidd.fsf@gnu.org> <877eaoydw8.fsf@gnu.org> <87h89shzyq.fsf@gmail.com> <87ftpchxel.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:50552) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hRzs7-0004Fw-12 for bug-guix@gnu.org; Sat, 18 May 2019 09:59:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hRze2-0002CS-L5 for bug-guix@gnu.org; Sat, 18 May 2019 09:45:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46776) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hRze2-0002CM-Hi for bug-guix@gnu.org; Sat, 18 May 2019 09:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hRze2-0000Hi-EJ for bug-guix@gnu.org; Sat, 18 May 2019 09:45:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87ftpchxel.fsf@gmail.com> (Mathieu Othacehe's message of "Sat, 18 May 2019 12:25:38 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Mathieu Othacehe Cc: 35783@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable It seems to be working well for me, including non-EFI i686. I use the attached script to test an full install from the ISO, with or without UEFI (though you cannot boot the install UEFI system because the EFI variables set by GRUB are not saved.) Ludo=E2=80=99. --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=test-install.sh Content-Description: the script #!/bin/sh set -e set -x ISO="$(./pre-inst-env guix system disk-image --file-system-type=iso9660 gnu/system/install.scm)" qemu-img create -f qcow2 /tmp/t.img 10G #cp "$(guix build ovmf)/share/firmware/ovmf_x64.bin" /tmp #chmod +w /tmp/ovmf_x64.bin EFI_OPTS="-bios $(guix build ovmf)/share/firmware/ovmf_x64.bin" exec qemu-system-x86_64 -enable-kvm -hda /tmp/t.img -cdrom "$ISO" -m 1024 -boot d -net user -net nic,model=virtio -no-reboot $EFI_OPTS --=-=-=--