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.24; helo=mga09.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (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 C1347210C0CE7 for ; Sun, 22 Jul 2018 19:10:53 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Jul 2018 19:10:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,391,1526367600"; d="scan'208";a="59803409" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga006.jf.intel.com with ESMTP; 22 Jul 2018 19:10:48 -0700 Received: from fmsmsx101.amr.corp.intel.com (10.18.124.199) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sun, 22 Jul 2018 19:10:48 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx101.amr.corp.intel.com (10.18.124.199) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sun, 22 Jul 2018 19:10:48 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.81]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.57]) with mapi id 14.03.0319.002; Mon, 23 Jul 2018 10:10:44 +0800 From: "Gao, Liming" To: "Zhu, Yonghong" , "edk2-devel@lists.01.org" Thread-Topic: [edk2] [Patch] BaseTools: ElfConvert Tool update VerboseMsg to same with the comment Thread-Index: AQHUGlodSqlum4+FJ0KGj3C0//XQZaScH/9Q Date: Mon, 23 Jul 2018 02:10:44 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E2BF6FA@SHSMSX104.ccr.corp.intel.com> References: <1531452733-4352-1-git-send-email-yonghong.zhu@intel.com> In-Reply-To: <1531452733-4352-1-git-send-email-yonghong.zhu@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch] BaseTools: ElfConvert Tool update VerboseMsg to same with the comment X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2018 02:10:53 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of >Yonghong Zhu >Sent: Friday, July 13, 2018 11:32 AM >To: edk2-devel@lists.01.org >Subject: [edk2] [Patch] BaseTools: ElfConvert Tool update VerboseMsg to >same with the comment > >Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=3D994 >Contributed-under: TianoCore Contribution Agreement 1.0 >Signed-off-by: Yonghong Zhu >--- > BaseTools/Source/C/GenFw/Elf32Convert.c | 2 +- > BaseTools/Source/C/GenFw/Elf64Convert.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/BaseTools/Source/C/GenFw/Elf32Convert.c >b/BaseTools/Source/C/GenFw/Elf32Convert.c >index af5ff93..3d7de6d 100644 >--- a/BaseTools/Source/C/GenFw/Elf32Convert.c >+++ b/BaseTools/Source/C/GenFw/Elf32Convert.c >@@ -688,11 +688,11 @@ WriteSections32 ( > > default: > // > // Ignore for unkown section type. > // >- VerboseMsg ("%s unknown section type %x. We directly copy this >section into Coff file", mInImageName, (unsigned)Shdr->sh_type); >+ VerboseMsg ("%s unknown section type %x. We ignore this unknown >section type.", mInImageName, (unsigned)Shdr->sh_type); > break; > } > } > } > >diff --git a/BaseTools/Source/C/GenFw/Elf64Convert.c >b/BaseTools/Source/C/GenFw/Elf64Convert.c >index 15da89c..469979c 100644 >--- a/BaseTools/Source/C/GenFw/Elf64Convert.c >+++ b/BaseTools/Source/C/GenFw/Elf64Convert.c >@@ -822,11 +822,11 @@ WriteSections64 ( > > default: > // > // Ignore for unkown section type. > // >- VerboseMsg ("%s unknown section type %x. We directly copy this >section into Coff file", mInImageName, (unsigned)Shdr->sh_type); >+ VerboseMsg ("%s unknown section type %x. We ignore this unknown >section type.", mInImageName, (unsigned)Shdr->sh_type); > break; > } > } > } > >-- >2.6.1.windows.1 > >_______________________________________________ >edk2-devel mailing list >edk2-devel@lists.01.org >https://lists.01.org/mailman/listinfo/edk2-devel