From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mx.groups.io with SMTP id smtpd.web08.19042.1653567275724974668 for ; Thu, 26 May 2022 05:14:38 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=LfZvT6BG; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: gua.guo@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653567277; x=1685103277; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=trnXvRz+CzQyvLeJfNwayN9I7c5J41S8DLbmVvJnDUI=; b=LfZvT6BGOh5jD5cBvRXm2sxTvAHgpOcKs9Y6SB+3caVIEffJpFo6H0f0 v8P+jYXGUmBCN1mSnS0Nh6vCV7e00cTaqereTeHS5TyKiBUNqFSzm41/N ST4iqwDQ93Zm7pdyR6zNG3h6X6QPkA8+zMZTG5ddMxlmKEmSvo+sHN33h uEnY7CdS3yrGJXvMReEfrCHVZz7SUrjDGsEpED7LvOcxtNh48h72tiGat QoxgbjuP84jDa+jvLpbEi3X221fs9clkXFGNOHfSa9nlGUFJKpVUNG4Mg /knifiGDHh3iYRDqcppP/iYo80SMLJ4a/S1EpjTynQSdP74hDhCFiRojO g==; X-IronPort-AV: E=McAfee;i="6400,9594,10358"; a="334780147" X-IronPort-AV: E=Sophos;i="5.91,252,1647327600"; d="scan'208";a="334780147" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 May 2022 05:14:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,252,1647327600"; d="scan'208";a="642857049" Received: from gguo-desk.gar.corp.intel.com ([10.5.215.23]) by fmsmga004.fm.intel.com with ESMTP; 26 May 2022 05:14:36 -0700 From: gua.guo@intel.com To: devel@edk2.groups.io Cc: Gua Guo , Ray Ni , Guo Dong Subject: [PATCH 2/3] UefiPayloadPkg: Align Identifier value with UPL spec Date: Thu, 26 May 2022 20:14:27 +0800 Message-Id: <20220526121428.1590-3-gua.guo@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20220526121428.1590-1-gua.guo@intel.com> References: <20220526121428.1590-1-gua.guo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D3933 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 Cc: Ray Ni Cc: Guo Dong Signed-off-by: Gua Guo --- UefiPayloadPkg/UniversalPayloadBuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UefiPayloadPkg/UniversalPayloadBuild.py b/UefiPayloadPkg/Unive= rsalPayloadBuild.py index 50335d4316..b7fd1505b6 100644 --- a/UefiPayloadPkg/UniversalPayloadBuild.py +++ b/UefiPayloadPkg/UniversalPayloadBuild.py @@ -29,7 +29,7 @@ class UPLD_INFO_HEADER(LittleEndianStructure): ]=0D =0D def __init__(self):=0D - self.Identifier =3D b'UPLD'=0D + self.Identifier =3D b'PLDH'=0D self.HeaderLength =3D sizeof(UPLD_INFO_HEADER)=0D self.HeaderRevision =3D 0x0075=0D self.Revision =3D 0x0000010105=0D --=20 2.31.1.windows.1