From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.20; helo=mga02.intel.com; envelope-from=bob.c.feng@intel.com; receiver=edk2-devel@lists.01.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (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 D93C0211B5086 for ; Tue, 8 Jan 2019 22:44:15 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jan 2019 22:44:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,456,1539673200"; d="scan'208";a="290072953" Received: from shwdepsi1121.ccr.corp.intel.com ([10.239.158.47]) by orsmga005.jf.intel.com with ESMTP; 08 Jan 2019 22:44:14 -0800 From: BobCF To: edk2-devel@lists.01.org Cc: Bob Feng , Liming Gao , Jaben Carsey Date: Wed, 9 Jan 2019 14:44:03 +0800 Message-Id: <20190109064403.63936-1-bob.c.feng@intel.com> X-Mailer: git-send-email 2.19.1.windows.1 MIME-Version: 1.0 Subject: [Patch 0/3] BaseTools: Remove unused logic in BaseTools X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jan 2019 06:44:17 -0000 Content-Transfer-Encoding: 8bit BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1350 BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1104 Based on the requestion the above BZ, this patch serial removes the BaseTools C and Python code for EDKI, IPF support. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob Feng Cc: Liming Gao Cc: Jaben Carsey Feng, Bob C (3): BaseTools: Remove unused logic for EDKI BaseTools: Remove unused logic for IPF BaseTools: Remove unused logic from C tools BaseTools/Source/C/Common/BasePeCoff.c | 14 +- BaseTools/Source/C/Common/PeCoffLoaderEx.c | 162 +------------ BaseTools/Source/C/EfiRom/EfiRom.h | 3 +- BaseTools/Source/C/GenFv/GenFvInternalLib.c | 72 +----- BaseTools/Source/C/GenFv/GenFvInternalLib.h | 10 - BaseTools/Source/C/GenFw/Elf64Convert.c | 5 - BaseTools/Source/C/GenFw/GenFw.c | 6 +- BaseTools/Source/C/GenFw/elf_common.h | 85 ------- .../C/Include/IndustryStandard/PeImage.h | 3 - .../Source/C/Include/IndustryStandard/pci22.h | 1 - BaseTools/Source/C/Makefiles/header.makefile | 1 - BaseTools/Source/C/VolInfo/VolInfo.c | 2 +- BaseTools/Source/Python/AutoGen/AutoGen.py | 93 +------- BaseTools/Source/Python/AutoGen/GenC.py | 90 +++---- BaseTools/Source/Python/AutoGen/GenMake.py | 18 +- BaseTools/Source/Python/Common/DataType.py | 21 +- BaseTools/Source/Python/Common/GlobalData.py | 6 - .../Source/Python/CommonDataClass/FdfClass.py | 20 -- BaseTools/Source/Python/Eot/EotMain.py | 2 - .../Python/GenFds/ComponentStatement.py | 29 --- BaseTools/Source/Python/GenFds/Fd.py | 56 +---- BaseTools/Source/Python/GenFds/FdfParser.py | 223 +----------------- BaseTools/Source/Python/GenFds/Fv.py | 12 +- BaseTools/Source/Python/GenFds/GenFds.py | 11 +- .../Python/GenFds/GenFdsGlobalVariable.py | 1 - BaseTools/Source/Python/GenFds/Region.py | 5 +- BaseTools/Source/Python/GenFds/Vtf.py | 200 ---------------- .../Source/Python/TargetTool/TargetTool.py | 4 +- .../Source/Python/Workspace/DecBuildData.py | 1 - .../Source/Python/Workspace/DscBuildData.py | 3 - .../Source/Python/Workspace/InfBuildData.py | 191 ++++----------- .../Source/Python/Workspace/MetaFileParser.py | 22 -- .../Python/Workspace/WorkspaceCommon.py | 29 +-- BaseTools/Source/Python/build/BuildReport.py | 54 ++--- BaseTools/Source/Python/build/build.py | 85 +------ edksetup.bat | 3 - 36 files changed, 146 insertions(+), 1397 deletions(-) delete mode 100644 BaseTools/Source/Python/GenFds/ComponentStatement.py delete mode 100644 BaseTools/Source/Python/GenFds/Vtf.py -- 2.19.1.windows.1