From nobody Sun May 5 09:16:05 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1519202190764864.4326299439108; Wed, 21 Feb 2018 00:36:30 -0800 (PST) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 59D1D223C179B; Wed, 21 Feb 2018 00:25:29 -0800 (PST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 5094E223C1762 for ; Wed, 21 Feb 2018 00:25:27 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Feb 2018 00:31:26 -0800 Received: from shwdeopenpsi168.ccr.corp.intel.com ([10.239.158.129]) by orsmga004.jf.intel.com with ESMTP; 21 Feb 2018 00:31:24 -0800 X-Original-To: edk2-devel@lists.01.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.93; helo=mga11.intel.com; envelope-from=yonghong.zhu@intel.com; receiver=edk2-devel@lists.01.org X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,543,1511856000"; d="scan'208";a="176889905" From: Yonghong Zhu To: edk2-devel@lists.01.org Date: Wed, 21 Feb 2018 16:31:21 +0800 Message-Id: <1519201881-25360-1-git-send-email-yonghong.zhu@intel.com> X-Mailer: git-send-email 2.6.1.windows.1 Subject: [edk2] [Patch] Build spec: update PCD value and SKU, DefaultStore info in report X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Kinney , Kevin W Shaw , Liming Gao MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Cc: Liming Gao Cc: Michael Kinney Cc: Kevin W Shaw Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu --- 13_build_reports/134_platform_summary.md | 10 +++++-- 13_build_reports/136_global_pcd_section.md | 47 ++++++++++++++++++++++++++= ++-- 13_build_reports/138_module_section.md | 8 ++++- 3 files changed, 60 insertions(+), 5 deletions(-) diff --git a/13_build_reports/134_platform_summary.md b/13_build_reports/13= 4_platform_summary.md index 083d714..09b8db6 100644 --- a/13_build_reports/134_platform_summary.md +++ b/13_build_reports/134_platform_summary.md @@ -37,11 +37,13 @@ following items: * Platform Name : %Platform UI name: '`PLATFORM_NAME`' in DSC `[Defines]` section% * Platform DSC Path: %Path of platform DSC file% * Architectures : %List string of all architectures used in build% * Tool Chain : %Tool chain string% -* Target : %Target String" +* Target : %Target String% +* SKUID: %Platform SKUID String% +* DefaultStore: %Platform DefaultStore String% * Output Path : %Path to platform build directory% * Build Environment : %Environment string reported by Python% * Build Duration : %Build duration time string% * AutoGen Duration : %AutoGen duration time string if it exists% * Make Duration : %Make duration time string if it exists% @@ -54,10 +56,12 @@ following items: Platform Name: NT32 Platform DSC Path: s:\edk2\Nt32Pkg\Nt32Pkg.dsc Architectures: IA32 Tool Chain: VS2008x86 Target: DEBUG +SKUID: DEFAULT +DefaultStore: STANDARD Output Path: s:\edk2\Build\NT32IA32 Build Environment: Windows-7-6.1.7601-SP1 Build Duration: 00:01:29 AutoGen Duration: 00:00:10 Make Duration: 00:01:02 @@ -104,10 +108,11 @@ The first line is required: `[*P|*F|*B] : () =3D ` =20 * `*P` means the Pcd's value was obtained from the DSC file * `*F` means the PCD's value was obtained from the FDF file. * `*B` means the PCD's value set by a build option. +**Note:** If the Pcd is a Structure PCD, is the Struct Name. =20 Additional lines may be displayed showing default values when the value is= not a default value. =20 ### Example @@ -135,15 +140,16 @@ not used PCD section is generated. PCD values derived from expressions or other PCDs are not differentiated i= n the report. Only the final value is displayed. =20 The first line is required: =20 -`[*P|*F|*B] : () =3D ` +`[*P|*F|*B] : () [()][()] =3D ` =20 * `*P` means the Pcd's value was obtained from the DSC file * `*F` means the PCD's value was obtained from the FDF file. * `*B` means the PCD's value set by a build option. +**Note:** If the Pcd is a Structure PCD, is the Struct Name. =20 Additional lines may be displayed showing default values when the value is= not a default value. =20 Since the PCDs in this section are not used by any module, the PCD value i= s not diff --git a/13_build_reports/136_global_pcd_section.md b/13_build_reports/= 136_global_pcd_section.md index d768488..6aa534b 100644 --- a/13_build_reports/136_global_pcd_section.md +++ b/13_build_reports/136_global_pcd_section.md @@ -52,18 +52,19 @@ Each global PCD item contains one or more lines: =20 ### 13.6.1 Required line =20 The first line is required: =20 -`[*P|*F|*B] : () =3D ` +`[*P|*F|*B] : () [()][()] =3D ` =20 -* `*P` means the Pcd's value was obtained from the DSC file +* `*P` means the PCD's value was obtained from the DSC file * `*F` means the PCD's value was obtained from the FDF file. * `*B` means the PCD's value was obtained from a build option. * If no `*P`, `*F` or `*B` is shown, the PCD's value comes from DEC file. = If the value obtained from either a build option, the DSC or FDF is the same as= the value in the DEC, then `*B`, `*P` or `*F` will not be shown in the repor= t. +**Note:** If the Pcd is a Structure PCD, is the Struct Name. =20 #### Examples =20 ``` *P PcdWinNtFirmwareVolume : FIXED (VOID*) =3D L"..\\Fv\\Nt= 32.fd" @@ -71,10 +72,14 @@ The first line is required: DEC DEFAULT =3D 0x0 =20 gTokenSpaceGuid *B LogEnable : FIXED (UNIT32) =3D 0x1 DEC DEFAULT =3D 0x0 +*P TestDynamic : DYN (VOID*) (DEFAULT) =3D L"= COM1!COM2" + : DYN (VOID*) (SKU1) =3D L"= COM3!COM4" + : DYN (VOID*) (SKU2) =3D L"= COM5!COM6" + DEC DEFAULT =3D L"COM1!C= OM0" ``` =20 ### 13.6.2 Optional lines =20 #### 13.6.2.1 Dynamic/DynamicEx @@ -139,5 +144,43 @@ These lines are formatted as: =20 ********** **Note:** Global PCD section is present when **PCD** is specified in **-Y** option. ********** + +#### 13.6.2.4 Field value for Structure PCD +If the Pcd is a Structure Pcd, every field value that user specified in DS= C/DEC +file will print out. The field value is from DSC/DEC file, not from the fi= nal +structure byte array, and the field order is same as it in DSC/DEC file. + +#### Example + +``` +gEfiMdePkgTokenSpaceGuid +*P TestFix : FIXED (TEST) =3D { + 0xff,0x02,0x00,0x2e,0xf6,0x08,0x6f,0x19,0x5c,0x8e,0x49,0x91,0x57,0x00,= 0x00,0x00, + 0x00,0x64,0x00,0x00,0x00} + .A =3D 0x2 + .C =3D 0x0 + .Array =3D {0x2e,0xf6,0x08,0x6f,0x19,0x5c,0x8e,0x49,0x9= 1,0x57} + .D =3D 0x64 + DEC DEFAULT =3D {0xFF,0xFF} + .A =3D 0xF + .C =3D 0xF +*P TestDynamicExHii : DEXHII (TEST) (SKU1) (STANDARD) =3D= { + 0xff,0x01,0x00,0x2e,0xf6,0x08,0x6f,0x19,0x5c,0x8e,0x49,0x91,0x57,0x00,= 0x00,0x00, + 0x00,0x64,0x00,0x00,0x00} + .A =3D 0x1 + .C =3D 0x0 + .Array =3D {0x2e,0xf6,0x08,0x6f,0x19,0x5c,0x8e,0x49,0x9= 1,0x57} + .D =3D 0x64 + : DEXHII (TEST) (SKU1) (Manufacturing= ) =3D { + 0xff,0x02,0x00,0x2e,0xf6,0x08,0x6f,0x20,0x5c,0x8e,0x49,0x91,0x57,0x00,= 0x00,0x00, + 0x00,0x68,0x00,0x00,0x00} + .A =3D 0x2 + .C =3D 0x0 + .Array =3D {0x2e,0xf6,0x08,0x6f,0x20,0x5c,0x8e,0x49,0x9= 1,0x57} + .D =3D 0x68 + DEC DEFAULT =3D {0xFF,0xFF} + .A =3D 0xF + .C =3D 0xF +``` diff --git a/13_build_reports/138_module_section.md b/13_build_reports/138_= module_section.md index 455537b..da9e4eb 100644 --- a/13_build_reports/138_module_section.md +++ b/13_build_reports/138_module_section.md @@ -238,11 +238,12 @@ gEfiMdeModulePkgTokenSpaceGuid ``` =20 Each PCD may contain up to four lines: =20 1. The first line is a mandatory line with the following format: - `[*P|*M|*F| ] : () =3D ` + `[*P|*F|*B] : () [()][()] =3D ` + **Note:** If the Pcd is a Structure PCD, is the Struct Name. - \*P means the Pcd's value is the platform default (listed in DSC PCD = common section or inherited from Module INF file). - \*M means the PCD's value in module INF was obtained from the `[Compo= nents]` section of the DSC file. - \*F means the PCD's value is override in FDF file. @@ -287,10 +288,15 @@ Each PCD may contain up to four lines: *M PcdDebugPrintErrorLevel : FIXED (UINT32) =3D 0x80000042 DSC DEFAULT =3D 0x80000040 DEC DEFAULT =3D 0x80000000 ``` =20 +4. Additional lines may exist if the PCD is Structure PCD. Every field val= ue +that user specified in DSC/DEC file will print out. The field value is from +DSC/DEC file, not from the final structure byte array, and the field order= is +same as it in DSC/DEC file. + ********** **Note:** This sub-section is present when **PCD** is specified in **-Y** option. ********** =20 --=20 2.6.1.windows.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel