diff options
| author | Raymond Mao <[email protected]> | 2025-07-18 07:16:14 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-27 09:42:36 -0600 |
| commit | 9d89fc4054faa7b5a9422b97b756b2cf63a91ad8 (patch) | |
| tree | bf93ca8e998d7d720b8e9c722b7bdc1aef730dba /common | |
| parent | fcc60481ae755cf289bb96ccef81294b0b443654 (diff) | |
bloblist: add blob type for DT overlay
Add blob type for DT overlay according to the update of Firmware
Handoff spec[1].
Add an inline header to represent the 'subtype' in a DT overlay
blob payload.
[1] Add Transfer Entry for Devicetree Overlay
https://github.com/FirmwareHandoff/firmware_handoff/pull/74
Signed-off-by: Raymond Mao <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Tested-by: Michal Simek <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/bloblist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/bloblist.c b/common/bloblist.c index 6e4f020d7c4..1c690f58b56 100644 --- a/common/bloblist.c +++ b/common/bloblist.c @@ -43,6 +43,7 @@ static struct tag_name { { BLOBLISTT_ACPI_TABLES, "ACPI tables for x86" }, { BLOBLISTT_TPM_EVLOG, "TPM event log defined by TCG EFI" }, { BLOBLISTT_TPM_CRB_BASE, "TPM Command Response Buffer address" }, + { BLOBLISTT_FDT_OVERLAY, "DT overlay" }, /* BLOBLISTT_AREA_FIRMWARE */ { BLOBLISTT_TPM2_TCG_LOG, "TPM v2 log space" }, |
