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.136; helo=mga12.intel.com; envelope-from=michael.d.kinney@intel.com; receiver=edk2-devel@lists.01.org Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) (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 B24B12110717E for ; Fri, 8 Jun 2018 23:15:11 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jun 2018 23:15:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,493,1520924400"; d="scan'208";a="55428554" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.254.116.225]) by fmsmga002.fm.intel.com with ESMTP; 08 Jun 2018 23:15:11 -0700 From: "Kinney, Michael D" To: edk2-devel@lists.01.org Cc: Yanyan Sun , Yonghong Zhu , Liming Gao , Michael D Kinney Date: Fri, 8 Jun 2018 23:15:01 -0700 Message-Id: <20180609061505.14380-2-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.14.2.windows.3 In-Reply-To: <20180609061505.14380-1-michael.d.kinney@intel.com> References: <20180609061505.14380-1-michael.d.kinney@intel.com> Subject: [Patch 1/5] BaseTools/BinToPcd: Fix typo in error messages X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2018 06:15:11 -0000 https://bugzilla.tianocore.org/show_bug.cgi?id=962 Change "PcdToBin" to "BinToPcd" Cc: Yanyan Sun Cc: Yonghong Zhu Cc: Liming Gao Signed-off-by: Michael D Kinney Contributed-under: TianoCore Contribution Agreement 1.1 --- BaseTools/Scripts/BinToPcd.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BaseTools/Scripts/BinToPcd.py b/BaseTools/Scripts/BinToPcd.py index f2485a27fa..014aad9800 100644 --- a/BaseTools/Scripts/BinToPcd.py +++ b/BaseTools/Scripts/BinToPcd.py @@ -135,7 +135,7 @@ if __name__ == '__main__': # Pcd = PcdValue if args.Verbose: - print 'PcdToBin: Convert binary file to PCD Value' + print 'BinToPcd: Convert binary file to PCD Value' elif args.PcdType is None: # # If --type is neither VPD nor HII, then use PCD statement syntax that is @@ -155,7 +155,7 @@ if __name__ == '__main__': Pcd = ' %s|%s|VOID*|%d' % (args.PcdName, PcdValue, args.MaxSize) if args.Verbose: - print 'PcdToBin: Convert binary file to PCD statement compatible with PCD sections:' + print 'BinToPcd: Convert binary file to PCD statement compatible with PCD sections:' print ' [PcdsFixedAtBuild]' print ' [PcdsPatchableInModule]' print ' [PcdsDynamicDefault]' @@ -182,7 +182,7 @@ if __name__ == '__main__': # Pcd = ' %s|%d|%d|%s' % (args.PcdName, args.Offset, args.MaxSize, PcdValue) if args.Verbose: - print 'PcdToBin: Convert binary file to PCD statement compatible with PCD sections' + print 'BinToPcd: Convert binary file to PCD statement compatible with PCD sections' print ' [PcdsDynamicVpd]' print ' [PcdsDynamicExVpd]' elif args.PcdType == 'HII': @@ -199,7 +199,7 @@ if __name__ == '__main__': args.Offset = 0 Pcd = ' %s|L"%s"|%s|%d|%s' % (args.PcdName, args.VariableName, args.VariableGuid, args.Offset, PcdValue) if args.Verbose: - print 'PcdToBin: Convert binary file to PCD statement compatible with PCD sections' + print 'BinToPcd: Convert binary file to PCD statement compatible with PCD sections' print ' [PcdsDynamicHii]' print ' [PcdsDynamicExHii]' -- 2.14.2.windows.3