stm32mp: stm32prog: Add support of ENV partition type

Add support of "ENV" partition type in flashlayout to select
the "u-boot-env" GUID, with PARTITION_U_BOOT_ENVIRONMENT =
3de21764-95bd-54bd-a5c3-4abe786f38a8, that mean a partition
holding a U-Boot environment introduced by
commit c0364ce1c6 ("doc/README.gpt: define partition type
GUID for U-Boot environment")'

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
This commit is contained in:
Patrick Delaunay
2023-06-08 17:09:54 +02:00
committed by Patrice Chotard
parent 90f992e6a5
commit 82a4a255aa
2 changed files with 6 additions and 0 deletions

View File

@@ -425,6 +425,8 @@ static int parse_type(struct stm32prog_data *data,
}
} else if (!strcmp(p, "FIP")) {
part->part_type = PART_FIP;
} else if (!strcmp(p, "ENV")) {
part->part_type = PART_ENV;
} else if (!strcmp(p, "System")) {
part->part_type = PART_SYSTEM;
} else if (!strcmp(p, "FileSystem")) {
@@ -1115,6 +1117,9 @@ static int create_gpt_partitions(struct stm32prog_data *data)
case PART_BINARY:
type_str = LINUX_RESERVED_UUID;
break;
case PART_ENV:
type_str = "u-boot-env";
break;
case PART_FIP:
type_str = FIP_TYPE_UUID;
break;