diff options
| author | Tom Rini <[email protected]> | 2024-11-20 11:55:24 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-11-20 11:55:24 -0600 |
| commit | 35d5ad6cf25f8c0ac39f90a8a51eb77e6e002d0d (patch) | |
| tree | 7eab0cd42a1a871e0632882f787fc9458da3906c /disk | |
| parent | 7fe55182d9263a62e18b450c97bdf0b8031e5667 (diff) | |
| parent | 7aad7833323aa9260935d172744a50f56356d52a (diff) | |
Merge branch 'qcom-main' of https://source.denx.de/u-boot/custodians/u-boot-snapdragon
CI: https://source.denx.de/u-boot/custodians/u-boot-snapdragon/-/pipelines/23474
- UFS support is enabled for SC7280 and SM8150 platforms.
- Qualcomm dt-bindings headers are all dropped in favour of
dts/upstream.
- The SMMU driver now correctly handles stream ID 0 and is disabled in
EL2.
- Initial support for capsule updates (using the new dynamic UUIDs) is
added for the RB3 Gen 2 board alongside a new SCSI backend for DFU.
- CONFIG_PINCONF is enabled in qcom_defconfig.
- The vqmmc supply is now enabled for sdcard support on boards that need
it.
- A quirk is added for reading GPIOs on the PM8550 PMIC
Diffstat (limited to 'disk')
| -rw-r--r-- | disk/part_efi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/disk/part_efi.c b/disk/part_efi.c index bdcfcba5d51..932d058c184 100644 --- a/disk/part_efi.c +++ b/disk/part_efi.c @@ -292,6 +292,7 @@ static int __maybe_unused part_get_info_efi(struct blk_desc *desc, int part, print_efiname(&gpt_pte[part - 1])); strcpy((char *)info->type, "U-Boot"); info->bootable = get_bootable(&gpt_pte[part - 1]); + info->type_flags = gpt_pte[part - 1].attributes.fields.type_guid_specific; if (CONFIG_IS_ENABLED(PARTITION_UUIDS)) { uuid_bin_to_str(gpt_pte[part - 1].unique_partition_guid.b, (char *)disk_partition_uuid(info), |
