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=jiewen.yao@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 254AF2097E27E for ; Thu, 12 Jul 2018 00:07:04 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Jul 2018 00:07:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,341,1526367600"; d="scan'208";a="55928015" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga007.jf.intel.com with ESMTP; 12 Jul 2018 00:04:35 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 12 Jul 2018 00:04:27 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.124]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.57]) with mapi id 14.03.0319.002; Thu, 12 Jul 2018 15:03:50 +0800 From: "Yao, Jiewen" To: "Gao, Liming" , "edk2-devel@lists.01.org" Thread-Topic: [Patch edk2-platforms\devel-MinPlatform] PurleyOpenBoardPkg: Update batch file not to check the return value of timeout Thread-Index: AQHUGFH3TR724+P3nkW0zmjydKkix6SLLDPw Date: Thu, 12 Jul 2018 07:03:50 +0000 Message-ID: <74D8A39837DF1E4DA445A8C0B3885C503ACA0709@shsmsx102.ccr.corp.intel.com> References: <20180710132848.9320-1-liming.gao@intel.com> In-Reply-To: <20180710132848.9320-1-liming.gao@intel.com> Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMjQyMjNjOTktNGVkYi00MTM3LTg0Y2ItMGViYTJmZWM5ZmZhIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoidXdvdGp0bnV4OFBXNVNjSmpRR3hoSkxaTkpMRHF2Nm1QVlBMRFFVUTVGend6cDFZRnRaY21VNlwvdWpuNGN5M0oifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch edk2-platforms\devel-MinPlatform] PurleyOpenBoardPkg: Update batch file not to check the return value of timeout 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: Thu, 12 Jul 2018 07:07:04 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: jiewen.yao@intel.com > -----Original Message----- > From: Gao, Liming > Sent: Tuesday, July 10, 2018 9:29 PM > To: edk2-devel@lists.01.org > Cc: Yao, Jiewen > Subject: [Patch edk2-platforms\devel-MinPlatform] PurleyOpenBoardPkg: > Update batch file not to check the return value of timeout >=20 > timeout command may not work well in some environment. >=20 > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Liming Gao > Cc: Jiewen Yao > --- > Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) >=20 > diff --git a/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat > b/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat > index a6e0605..4c4aec3 100644 > --- a/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat > +++ b/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat > @@ -111,13 +111,13 @@ echo. > echo -------------------------------------------------------------------= - > echo. > call postbuild.bat > +if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% > timeout 1 > echo -------------------------------------------------------------------= - > echo. > echo PostBuild End > echo. > echo -------------------------------------------------------------------= - > -if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% >=20 > echo %date% %time% > echo. > @@ -128,7 +128,6 @@ echo Purley Build > End > echo. > echo -------------------------------------------------------------------= ------------------------- >=20 > -if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% > :done > endlocal & EXIT /b %SCRIPT_ERROR% >=20 > -- > 2.10.0.windows.1