mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2026-07-06 14:31:24 +00:00
In the case of GPT, the UEFI specification requires that the PMBR (Protective MBR) partition table contain one partition record, which starts at LBA 1, containing the GPT Header. Hence, the field 'first_lba' of the first partition table entry of the PMBR should always be set to 1 when GPT is used. However, this is not the case for plain MBR. The function load_mbr_header() should also work for plain MBR partitioning, so the check 'if (tmp.first_lba != 1)' has been relocated. Change-Id: Iad990e61b2186c21f942537dfd140ed0e023ac4c Signed-off-by: Bogdan Roman <bogdan-gabriel.roman@nxp.com> Signed-off-by: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>