From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (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 9648721954069 for ; Wed, 19 Apr 2017 13:37:33 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP; 19 Apr 2017 13:37:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,222,1488873600"; d="scan'208";a="91513130" Received: from mdkinney-mobl.amr.corp.intel.com ([10.241.98.51]) by fmsmga005.fm.intel.com with ESMTP; 19 Apr 2017 13:37:32 -0700 From: Michael Kinney To: edk2-devel@lists.01.org Cc: Liming Gao , Yonghong Zhu , Kevin W Shaw Date: Wed, 19 Apr 2017 13:37:25 -0700 Message-Id: <1492634248-15292-1-git-send-email-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.6.3.windows.1 Subject: [edk2-BuildSpecification PATCH 0/3] Add support for mixed PCD access X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Apr 2017 20:37:33 -0000 https://bugzilla.tianocore.org/show_bug.cgi?id=485 GitHub word diff view of the pathes in this series * [1/3] https://github.com/mdkinney/edk2-BuildSpecification/commit/e972f4ae0135704243d04a6da2a177d9990d2340?w=1 * [2/3] https://github.com/mdkinney/edk2-BuildSpecification/commit/4192cda206dce5ca97264c992492998c47671563?w=1 * [3/3] https://github.com/mdkinney/edk2-BuildSpecification/commit/00707ca6de6872f59e2dace2dc5e4f9a93cca418?w=1 The build tools currently require a PCD to use the same access method from all modules. This update still requires modules built from sources to use the same access method, but binary modules are allowed to use alternate access methods. Cc: Liming Gao Cc: Yonghong Zhu Cc: Kevin W Shaw Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael Kinney Michael Kinney (3): Add rules for for mixed PCD access Make room for new mixed PCD report section Add report section for mixed PCD access 13_build_reports/133_output.md | 1 + 13_build_reports/135_global_pcd_section.md | 135 ------ 13_build_reports/135_mixed_pcd_section.md | 54 +++ 13_build_reports/136_fd_section.md | 166 -------- 13_build_reports/136_global_pcd_section.md | 135 ++++++ 13_build_reports/137_fd_section.md | 166 ++++++++ 13_build_reports/137_module_section.md | 452 --------------------- .../138_execution_order_prediction_section.md | 71 ---- 13_build_reports/138_module_section.md | 452 +++++++++++++++++++++ .../139_execution_order_prediction_section.md | 71 ++++ .../84_auto-generated_pcd_database_file.md | 97 +++-- README.md | 1 + SUMMARY.md | 9 +- 13 files changed, 939 insertions(+), 871 deletions(-) delete mode 100644 13_build_reports/135_global_pcd_section.md create mode 100644 13_build_reports/135_mixed_pcd_section.md delete mode 100644 13_build_reports/136_fd_section.md create mode 100644 13_build_reports/136_global_pcd_section.md create mode 100644 13_build_reports/137_fd_section.md delete mode 100644 13_build_reports/137_module_section.md delete mode 100644 13_build_reports/138_execution_order_prediction_section.md create mode 100644 13_build_reports/138_module_section.md create mode 100644 13_build_reports/139_execution_order_prediction_section.md -- 2.6.3.windows.1