From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Thomas Schmitt" Subject: Re: ISO installer image: GPT versus MBR partitions Date: Thu, 18 Apr 2019 15:50:59 +0200 Message-ID: <6878673033215549429@scdbackup.webframe.org> References: <20190418121912.qt7lku32c24y6vm5@pelzflorian.localdomain> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:51981) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hH7ZN-0001mr-7f for guix-devel@gnu.org; Thu, 18 Apr 2019 09:59:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hH7PK-00046n-7u for guix-devel@gnu.org; Thu, 18 Apr 2019 09:48:55 -0400 In-Reply-To: <20190418121912.qt7lku32c24y6vm5@pelzflorian.localdomain> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: bug-xorriso@gnu.org Cc: guix-devel@gnu.org Hi, Florian Pelz wrote: > I find a efi/boot/bootx64.efi PE executable inside efi.img on the Guix > ISO. On Debian the long name is EFI/boot/bootx64.iso in capital letters (I assume s/bootx64.iso/bootx64.efi/) It's FAT filesystem. Upper case or lower case does not matter. Most probably it is a matter of mount options whether you see capital or small letters. The image files seem to contain the names in capital letters: # mount guixsd-install-0.16.0.x86_64-linux.iso /mnt/iso $ strings /mnt/iso/efi.img | head -9 MTOO4021 Hf3NO NAME FAT12 EFI . .. BOOT . .. BOOTX64 EFI # umount /mnt/iso # mount debian-live-9.8.0-amd64-xfce.iso /mnt/iso $ strings /mnt/iso/boot/grub/efi.img | head -17 mkfs.fat dNO NAME FAT12 This is not a bootable disk. Please insert a bootable floppy and press any key to try again ... EFI KNKN . KNKN .. KNKN BOOT KNKN . KNKN .. KNKN BOOTX64 EFI > How would I check if it gets run? Interesting question. If it says "GRUB" or "Guix", then it runs. But up to then it may start and fail silently. > the Guix USB drive > merely does not show up (for Debian, it shows up as an EFI partition > in the boot menu). So probably it is not run. I'll develop a xorriso repack run for the layout of Debian ISOs, as strange as it is. Have a nice day :) Thomas