Re: [U-Boot] [PATCH v2] efi: Export mbr partition for EFI.

2017-06-20 Thread Alexander Graf
On 20.06.17 14:11, Emmanuel Vadot wrote: On Tue, 20 Jun 2017 14:08:08 +0200 Alexander Graf wrote: On 20.06.17 14:02, Ard Biesheuvel wrote: On 20 June 2017 at 13:55, Alexander Graf wrote: On 20.06.17 08:35, Emmanuel Vadot wrote: While MBR partition isn't supposed to work in a EFI env

Re: [U-Boot] [PATCH v2] efi: Export mbr partition for EFI.

2017-06-20 Thread Emmanuel Vadot
On Tue, 20 Jun 2017 14:08:08 +0200 Alexander Graf wrote: > > > On 20.06.17 14:02, Ard Biesheuvel wrote: > > On 20 June 2017 at 13:55, Alexander Graf wrote: > >> > >> > >> On 20.06.17 08:35, Emmanuel Vadot wrote: > >>> > >>> While MBR partition isn't supposed to work in a EFI environment some >

Re: [U-Boot] [PATCH v2] efi: Export mbr partition for EFI.

2017-06-20 Thread Alexander Graf
On 20.06.17 14:02, Ard Biesheuvel wrote: On 20 June 2017 at 13:55, Alexander Graf wrote: On 20.06.17 08:35, Emmanuel Vadot wrote: While MBR partition isn't supposed to work in a EFI environment some It actually is supposed to work :). I've used it on edk2 based systems a few times alre

Re: [U-Boot] [PATCH v2] efi: Export mbr partition for EFI.

2017-06-20 Thread Ard Biesheuvel
On 20 June 2017 at 13:55, Alexander Graf wrote: > > > On 20.06.17 08:35, Emmanuel Vadot wrote: >> >> While MBR partition isn't supposed to work in a EFI environment some > > > It actually is supposed to work :). I've used it on edk2 based systems a few > times already. > Correct. Even though UEFI

Re: [U-Boot] [PATCH v2] efi: Export mbr partition for EFI.

2017-06-20 Thread Alexander Graf
On 20.06.17 08:35, Emmanuel Vadot wrote: While MBR partition isn't supposed to work in a EFI environment some It actually is supposed to work :). I've used it on edk2 based systems a few times already. board rely partially or fully on MBR (BeagleBone, RPI and probably others). This export

[U-Boot] [PATCH v2] efi: Export mbr partition for EFI.

2017-06-19 Thread Emmanuel Vadot
While MBR partition isn't supposed to work in a EFI environment some board rely partially or fully on MBR (BeagleBone, RPI and probably others). This export the MBR partition as logical partition which is useful to efi application that cannot read raw disks. Signed-off-by: Emmanuel Vadot --- Chan