From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander von Gluck IV Date: Sat, 23 Jan 2021 15:30:43 +0000 Subject: Pull request for UEFI sub-system for efi-2021-04-rc1-3 In-Reply-To: <396aa7d5-e7f6-86ee-59bb-324a8d322794@gmx.de> References: <396aa7d5-e7f6-86ee-59bb-324a8d322794@gmx.de> Message-ID: <1dd2dba67279cbd389b45a76c1d58247@unixzen.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de January 23, 2021 8:39 AM, "Heinrich Schuchardt" wrote: > efi_loader: correct EFI_BLOCK_IO_PROTOCOL.Media.LastBlock (2021-01-23 > 07:56:54 +0100) Confirming that these corrections fix the presented block devices by u-boot EFI to EFI binaries: Before: (nonsensical "last block" which is start + length) Welcome to the Haiku boot loader! platform_add_boot_device: called platform_add_boot_device: .. present: true, logical: false, removeable: false, blocksize: 512, lastblock: 681984 platform_add_boot_device: .. present: true, logical: true, removeable: false, blocksize: 512, lastblock: 679936 platform_add_boot_device: .. present: true, logical: true, removeable: false, blocksize: 512, lastblock: 614400 After: (correct "last block" which is start + length) Welcome to the Haiku boot loader! platform_add_boot_device: called platform_add_boot_device: .. present: true, logical: false, removeable: false, blocksize: 512, lastblock: 681983 platform_add_boot_device: .. present: true, logical: true, removeable: false, blocksize: 512, lastblock: 65535 platform_add_boot_device: .. present: true, logical: true, removeable: false, blocksize: 512, lastblock: 614399 -- Alex