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.115; helo=mga14.intel.com; envelope-from=jaben.carsey@intel.com; receiver=edk2-devel@lists.01.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (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 BF1CC21959CB2 for ; Tue, 27 Nov 2018 10:02:38 -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 fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Nov 2018 10:02:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,287,1539673200"; d="scan'208";a="277702532" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga005.jf.intel.com with ESMTP; 27 Nov 2018 10:02:37 -0800 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.408.0; Tue, 27 Nov 2018 10:02:36 -0800 Received: from fmsmsx103.amr.corp.intel.com ([169.254.2.186]) by fmsmsx158.amr.corp.intel.com ([169.254.15.234]) with mapi id 14.03.0415.000; Tue, 27 Nov 2018 10:02:37 -0800 From: "Carsey, Jaben" To: "Carsey, Jaben" , "edk2-devel@lists.01.org" CC: "Gao, Liming" , "Zhu, Yonghong" Thread-Topic: [edk2] [Patch v1 1/1] BaseTools: Move Identification file to Eot Thread-Index: AQHUfcMG8f50oED2wUq1PVK6lW872KVj+x0Q Date: Tue, 27 Nov 2018 18:02:36 +0000 Message-ID: References: In-Reply-To: Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDdiZDljY2EtZTMzYy00MWRhLTk4YjktZTY1ZTQ4Mzc0ZTc5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiWlE4VUhjUTB0ZHZEUCtocjdqUmtNdDhBQ1ZMRjQyUFdRMTRpQ21xMHdxVHhCUUNJZXBNcVpBa2tJWVwvTlE4Q0EifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [10.1.200.107] MIME-Version: 1.0 Subject: Re: [Patch v1 1/1] BaseTools: Move Identification file to Eot 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: Tue, 27 Nov 2018 18:02:39 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Poke. Any comments on this one? > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of > Jaben Carsey > Sent: Friday, November 16, 2018 7:42 AM > To: edk2-devel@lists.01.org > Cc: Gao, Liming > Subject: [edk2] [Patch v1 1/1] BaseTools: Move Identification file to Eot > Importance: High >=20 > Move the Identification file. > This file is only ever imported into the Eot tool. >=20 > Cc: Yonghong Zhu > Cc: Liming Gao > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Jaben Carsey > --- > BaseTools/Source/Python/{Common =3D> Eot}/Identification.py | 0 > BaseTools/Source/Python/Eot/InfParserLite.py | 3 ++- > 2 files changed, 2 insertions(+), 1 deletion(-) >=20 > diff --git a/BaseTools/Source/Python/Common/Identification.py > b/BaseTools/Source/Python/Eot/Identification.py > similarity index 100% > rename from BaseTools/Source/Python/Common/Identification.py > rename to BaseTools/Source/Python/Eot/Identification.py > diff --git a/BaseTools/Source/Python/Eot/InfParserLite.py > b/BaseTools/Source/Python/Eot/InfParserLite.py > index c910c129a719..0cfe0398f05f 100644 > --- a/BaseTools/Source/Python/Eot/InfParserLite.py > +++ b/BaseTools/Source/Python/Eot/InfParserLite.py > @@ -16,11 +16,12 @@ > # > from __future__ import print_function > from __future__ import absolute_import > + > import Common.LongFilePathOs as os > import Common.EdkLogger as EdkLogger > from Common.DataType import * > from CommonDataClass.DataClass import * > -from Common.Identification import * > +from Eot.Identification import Identification > from Common.StringUtils import * > from Eot.Parser import * > from Eot import Database > -- > 2.16.2.windows.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel