From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by ml01.01.org (Postfix) with ESMTP id 5E7801A1DF7 for ; Wed, 17 Aug 2016 19:55:24 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP; 17 Aug 2016 19:55:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,537,1464678000"; d="scan'208";a="1016368518" Received: from orsmsx104.amr.corp.intel.com ([10.22.225.131]) by orsmga001.jf.intel.com with ESMTP; 17 Aug 2016 19:55:24 -0700 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.118]) by ORSMSX104.amr.corp.intel.com ([169.254.4.32]) with mapi id 14.03.0248.002; Wed, 17 Aug 2016 19:55:23 -0700 From: "Ma, Maurice" To: "Agyeman, Prince" CC: "Leahy, Leroy P" , "edk2-devel@lists.01.org" Thread-Topic: [PATCH 2/2] CorebootPayloadPkg: fixed GCC49 and GCC5 hang in PeiCore Thread-Index: AQHR+MJpSI0fwj+3BUSGOAZryXaTqKBOBkBQ Date: Thu, 18 Aug 2016 02:55:22 +0000 Message-ID: <7AAC936950815649B5F88FAE785306C284148192@ORSMSX113.amr.corp.intel.com> References: <97ae23986a9bdaba3ae51984f3a63ba1662baeb2.1471457662.git.prince.agyeman@intel.com> In-Reply-To: <97ae23986a9bdaba3ae51984f3a63ba1662baeb2.1471457662.git.prince.agyeman@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNDM0YzEzNWUtNmE4Yy00OWIxLWI3N2YtNjE2MmE0YmVhOWUwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjBZN1U4dTBiTTNTT0QyR0daN0x2c3E2R242WURtTURGekZscXczemhtVU09In0= x-originating-ip: [10.22.254.140] MIME-Version: 1.0 Subject: Re: [PATCH 2/2] CorebootPayloadPkg: fixed GCC49 and GCC5 hang in PeiCore X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2016 02:55:24 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed by: Maurice Ma -----Original Message----- From: Agyeman, Prince=20 Sent: Wednesday, August 17, 2016 1:16 PM To: edk2-devel@lists.01.org Cc: Ma, Maurice; Leahy, Leroy P Subject: [PATCH 2/2] CorebootPayloadPkg: fixed GCC49 and GCC5 hang in PeiCo= re Section alignment of .data in GCC49 and GCC5 are 0x40 rather than 0x20 in G= CC48 and below. This causes a hang in PeiCore. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Prince Agyeman --- CorebootPayloadPkg/CorebootPayloadPkg.fdf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CorebootPayloadPkg/CorebootPayloadPkg.fdf b/CorebootPayloadPkg= /CorebootPayloadPkg.fdf index 481f343..d07fd30 100644 --- a/CorebootPayloadPkg/CorebootPayloadPkg.fdf +++ b/CorebootPayloadPkg/CorebootPayloadPkg.fdf @@ -219,7 +219,7 @@ INF CorebootPayloadPkg/FbGop/FbGop.inf =20 [Rule.Common.PEI_CORE] FILE PEI_CORE =3D $(NAMED_GUID) { - PE32 PE32 Align=3D32 $(INF_OUTPUT)/$(MODULE_NAME).efi + PE32 PE32 Align=3DAuto $(INF_OUTPUT)/$(MODULE_NAME).efi UI STRING =3D"$(MODULE_NAME)" Optional VERSION STRING =3D"$(INF_VERSION)" Optional BUILD_NUM=3D$(BUILD_NUMBE= R) } @@ -227,7 +227,7 @@ INF CorebootPayloadPkg/FbGop/FbGop.inf [Rule.Common.PEIM] FILE PEIM =3D $(NAMED_GUID) { PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depe= x - PE32 PE32 Align=3D32 $(INF_OUTPUT)/$(MODULE_NAME).ef= i + PE32 PE32 Align=3DAuto $(INF_OUTPUT)/$(MODULE_NAME).= efi UI STRING=3D"$(MODULE_NAME)" Optional VERSION STRING=3D"$(INF_VERSION)" Optional BUILD_NUM=3D$(BUILD_NUMBE= R) } -- 2.7.4