From b69ba6ed69fabda339f40593745c69e637fb9fce Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pali=20Roh=C3=A1r?= Date: Sat, 30 Apr 2022 12:50:46 +0200 Subject: [PATCH] libfdisk: (gpt) Add UUID for Marvell Armada 3700 Boot partition MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This GPT UUID is used by BootROM on Marvell Armada 3700 SoC. BootROM searches for GPT partition with this UUID on attached SATA disk and loads bootloader from it. Marvell Armada 3700 SoC is used e.g. on popular EspressoBIN SBC board which has relatively solid Linux support. Information about SATA booting and this GPT partition is currently documented only in development version of ARM Trusted-Firmware-A documentation: https://trustedfirmware-a.readthedocs.io/en/latest/plat/marvell/armada/build.html It is missing in official documentation for Armada 3720 BootROM and therefore hard to find it. Signed-off-by: Pali Rohár --- include/pt-gpt-partnames.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/pt-gpt-partnames.h b/include/pt-gpt-partnames.h index 23a1377609..4b91568cbe 100644 --- a/include/pt-gpt-partnames.h +++ b/include/pt-gpt-partnames.h @@ -266,3 +266,6 @@ DEF_GUID("2E54B353-1271-4842-806F-E436D6AF6985", N_("HiFive BBL")), /* Haiku */ DEF_GUID("42465331-3BA3-10F1-802A-4861696B7521", N_("Haiku BFS")), + +/* Marvell */ +DEF_GUID("6828311A-BA55-42A4-BCDE-A89BB5EDECAE", N_("Marvell Armada 3700 Boot partition")), -- 2.47.2