diff options
author | Gua Guo <gua.guo@intel.com> | 2022-05-26 09:05:39 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-05-27 16:15:26 +0000 |
commit | b4be5f05dd0761ce9a879f86b70a66239c010384 (patch) | |
tree | 33291cd6ff5dc4699bf2731af5466f29c8872f4d /UefiPayloadPkg | |
parent | 7f0890776ee7a81a5c56ffaa8c618d0f844c03f0 (diff) | |
download | edk2-b4be5f05dd0761ce9a879f86b70a66239c010384.tar.gz |
UefiPayloadPkg: Align Identifier value with UPL spec
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3933
URL: https://universalpayload.github.io/documentation/
Currently, Identifier value is "UPLD", it needs to have correct value
"PLDH" based on Universal Payload Specification spec section 2.12.2
Reviewed-by: Ray Ni <ray.ni@intel.com>
Reviewed-by: Guo Dong <guo.dong@intel.com>
Signed-off-by: Gua Guo <gua.guo@intel.com>
Diffstat (limited to 'UefiPayloadPkg')
-rw-r--r-- | UefiPayloadPkg/UniversalPayloadBuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UefiPayloadPkg/UniversalPayloadBuild.py b/UefiPayloadPkg/UniversalPayloadBuild.py index 50335d4316..b7fd1505b6 100644 --- a/UefiPayloadPkg/UniversalPayloadBuild.py +++ b/UefiPayloadPkg/UniversalPayloadBuild.py @@ -29,7 +29,7 @@ class UPLD_INFO_HEADER(LittleEndianStructure): ]
def __init__(self):
- self.Identifier = b'UPLD'
+ self.Identifier = b'PLDH'
self.HeaderLength = sizeof(UPLD_INFO_HEADER)
self.HeaderRevision = 0x0075
self.Revision = 0x0000010105
|