Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2016-02-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 20.06.2015 12:16, Ross Lagerwall wrote: > GRUB calculates a boot device based on the device path given by the > firmware so: Please reread what Andrei said. GRUB combines stored prefix and information from firmware. Syntax ()/boot/grub will always use the full disk signature.asc Description:

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-21 Thread Andrei Borzenkov
В Sat, 20 Jun 2015 11:16:47 +0100 Ross Lagerwall пишет: > > GRUB calculates a boot device based on the device path given by the > firmware so: It is not quite true. GRUB will auofill device part if it is not present, keeping partition. > With a normal CD, the firmware gives it something like >

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-20 Thread Thomas Schmitt
Hi, not that i would want to interfere with GRUB2 development decisions. Nevertheless, i have some comments from the view of the specs. Vladimir Serbinenko wrote: > El torito catalog contains bootable binaries. UEFI 2.4 9.3.6.2 "CD-ROM Media Device Path" "The CD-ROM Media Device Path is used to

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-20 Thread Vladimir 'phcoder' Serbinenko
I agree with Andrei. El torito catalog contains bootable binaries. The fact that this binary follows FAT format is purely tangential and we should not put additional files there or access it either Le 20 juin 2015 13:17, "Ross Lagerwall" a écrit : > On Mon, Jun 08, 2015 at 10:01:17PM +0300, Andre

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-20 Thread Ross Lagerwall
On Mon, Jun 08, 2015 at 10:01:17PM +0300, Andrei Borzenkov wrote: > В Mon, 8 Jun 2015 19:25:12 +0100 > Ross Lagerwall пишет: > > > On Mon, Jun 08, 2015 at 08:50:48PM +0300, Andrei Borzenkov wrote: > > > В Mon, 8 Jun 2015 18:31:06 +0100 > > > Ross Lagerwall пишет: > > > > > > > On Mon, Jun 08, 2

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-08 Thread Andrei Borzenkov
В Mon, 8 Jun 2015 19:25:12 +0100 Ross Lagerwall пишет: > On Mon, Jun 08, 2015 at 08:50:48PM +0300, Andrei Borzenkov wrote: > > В Mon, 8 Jun 2015 18:31:06 +0100 > > Ross Lagerwall пишет: > > > > > On Mon, Jun 08, 2015 at 07:51:44PM +0300, Andrei Borzenkov wrote: > > > > В Sun, 7 Jun 2015 11:24:

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-08 Thread Ross Lagerwall
On Mon, Jun 08, 2015 at 08:50:48PM +0300, Andrei Borzenkov wrote: > В Mon, 8 Jun 2015 18:31:06 +0100 > Ross Lagerwall пишет: > > > On Mon, Jun 08, 2015 at 07:51:44PM +0300, Andrei Borzenkov wrote: > > > В Sun, 7 Jun 2015 11:24:46 +0100 > > > Ross Lagerwall пишет: > > > > > > > Add a module, pa

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-08 Thread Andrei Borzenkov
В Mon, 8 Jun 2015 18:31:06 +0100 Ross Lagerwall пишет: > On Mon, Jun 08, 2015 at 07:51:44PM +0300, Andrei Borzenkov wrote: > > В Sun, 7 Jun 2015 11:24:46 +0100 > > Ross Lagerwall пишет: > > > > > Add a module, part_eltorito, to allow parsing of the El Torito boot > > > catalog into partitions.

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-08 Thread Ross Lagerwall
On Mon, Jun 08, 2015 at 07:51:44PM +0300, Andrei Borzenkov wrote: > В Sun, 7 Jun 2015 11:24:46 +0100 > Ross Lagerwall пишет: > > > Add a module, part_eltorito, to allow parsing of the El Torito boot > > catalog into partitions. This follows the El Torito Bootable CD-ROM > > Format Specification

Re: [PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-08 Thread Andrei Borzenkov
В Sun, 7 Jun 2015 11:24:46 +0100 Ross Lagerwall пишет: > Add a module, part_eltorito, to allow parsing of the El Torito boot > catalog into partitions. This follows the El Torito Bootable CD-ROM > Format Specification Version 1.0 and the UEFI Specification 2.5. > In cases where the specification

[PATCH] core/partmap: Add El Torito boot catalog parsing

2015-06-07 Thread Ross Lagerwall
Add a module, part_eltorito, to allow parsing of the El Torito boot catalog into partitions. This follows the El Torito Bootable CD-ROM Format Specification Version 1.0 and the UEFI Specification 2.5. In cases where the specification is unclear, the code follows the UEFI reference implementation.