From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.120; helo=mga04.intel.com; envelope-from=yonghong.zhu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) (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 464F12034B411 for ; Tue, 26 Dec 2017 08:35:21 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Dec 2017 08:40:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,460,1508828400"; d="scan'208";a="16677128" Received: from shwdeopenpsi168.ccr.corp.intel.com ([10.239.158.129]) by fmsmga001.fm.intel.com with ESMTP; 26 Dec 2017 08:40:14 -0800 From: Yonghong Zhu To: edk2-devel@lists.01.org Cc: Yunhua Feng Date: Wed, 27 Dec 2017 00:40:11 +0800 Message-Id: <1514306413-5880-1-git-send-email-yonghong.zhu@intel.com> X-Mailer: git-send-email 2.6.1.windows.1 Subject: [Patch 0/2] BaseTools: Add Flexible PCD Value support 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: , X-List-Received-Date: Tue, 26 Dec 2017 16:35:21 -0000 https://bugzilla.tianocore.org/show_bug.cgi?id=541 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng Signed-off-by: Yonghong Zhu Yonghong Zhu (2): BaseTools: Support PCD flexible values format BaseTools: Add DevicePath support for PCD values BaseTools/Source/BinaryFiles.txt | 3 +- BaseTools/Source/C/DevicePath/DevicePath.c | 188 ++ BaseTools/Source/C/DevicePath/DevicePath.h | 1380 ++++++++ BaseTools/Source/C/DevicePath/DevicePathFromText.c | 3503 ++++++++++++++++++++ BaseTools/Source/C/DevicePath/DevicePathFromText.h | 72 + .../Source/C/DevicePath/DevicePathUtilities.c | 2352 +++++++++++++ .../Source/C/DevicePath/DevicePathUtilities.h | 555 ++++ BaseTools/Source/C/DevicePath/GNUmakefile | 30 + BaseTools/Source/C/DevicePath/Makefile | 24 + BaseTools/Source/C/DevicePath/UefiDevicePathLib.c | 298 ++ BaseTools/Source/C/DevicePath/UefiDevicePathLib.h | 473 +++ BaseTools/Source/C/GNUmakefile | 3 +- BaseTools/Source/C/Makefile | 5 +- BaseTools/Source/Python/AutoGen/AutoGen.py | 39 + BaseTools/Source/Python/AutoGen/GenC.py | 2 + BaseTools/Source/Python/Common/Expression.py | 241 +- BaseTools/Source/Python/Common/Misc.py | 236 +- BaseTools/Source/Python/Workspace/DscBuildData.py | 14 +- BaseTools/Source/Python/Workspace/InfBuildData.py | 7 + .../Source/Python/Workspace/MetaFileParser.py | 17 +- .../Source/Python/Workspace/WorkspaceCommon.py | 6 +- BaseTools/Source/Python/build/BuildReport.py | 6 + 22 files changed, 9338 insertions(+), 116 deletions(-) create mode 100644 BaseTools/Source/C/DevicePath/DevicePath.c create mode 100644 BaseTools/Source/C/DevicePath/DevicePath.h create mode 100644 BaseTools/Source/C/DevicePath/DevicePathFromText.c create mode 100644 BaseTools/Source/C/DevicePath/DevicePathFromText.h create mode 100644 BaseTools/Source/C/DevicePath/DevicePathUtilities.c create mode 100644 BaseTools/Source/C/DevicePath/DevicePathUtilities.h create mode 100644 BaseTools/Source/C/DevicePath/GNUmakefile create mode 100644 BaseTools/Source/C/DevicePath/Makefile create mode 100644 BaseTools/Source/C/DevicePath/UefiDevicePathLib.c create mode 100644 BaseTools/Source/C/DevicePath/UefiDevicePathLib.h -- 2.6.1.windows.1