From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: prince.agyeman@intel.com) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by groups.io with SMTP; Wed, 15 May 2019 10:35:50 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 May 2019 10:35:49 -0700 X-ExtLoop1: 1 Received: from paagyema-desk2.amr.corp.intel.com ([10.7.159.148]) by orsmga006.jf.intel.com with ESMTP; 15 May 2019 10:35:49 -0700 From: "Agyeman, Prince" To: devel@edk2.groups.io Cc: Prince Agyeman , Michael Kubacki , Michael D Kinney , Nate DeSimone , Liming Gao , Ankit Sinha Subject: [edk2-platforms] [PATCH 0/5] Added GCC5 build support Date: Wed, 15 May 2019 10:35:44 -0700 Message-Id: X-Mailer: git-send-email 2.19.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Prince Agyeman This patch series adds GCC 5 build support to ClevoOpenBoardPkg and KabylakeOpenBoardPkg Cc: Michael Kubacki Cc: Michael D Kinney Cc: Nate DeSimone Cc: Liming Gao Cc: Ankit Sinha Prince Agyeman (5): MinPlatformPkg: Added GCC5 build support KabylakeSiliconPkg: Casting functions to EFIAPI KabylakeOpenBoardPkg: Added GCC5 build support ClevoOpenBoardPkg: Added GCC5 build support Intel/Readme.md: Updated readme with linux build instructions .../N1xxWU/OpenBoardPkgBuildOption.dsc | 2 + Platform/Intel/ClevoOpenBoardPkg/OpenBoardPkg.dec | 4 +- .../KabylakeRvp3/OpenBoardPkgBuildOption.dsc | 12 +- .../Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec | 14 +- .../Ia32/PeiCoreEntry.S | 123 -------- .../Ia32/{PeiCoreEntry.asm => PeiCoreEntry.nasm} | 52 ++- .../SecFspWrapperPlatformSecLib/Ia32/SecEntry.S | 348 --------------------- .../Ia32/{SecEntry.asm => SecEntry.nasm} | 138 ++++---- .../SecFspWrapperPlatformSecLib/Ia32/Stack.S | 73 ----- .../Ia32/{Stack.asm => Stack.nasm} | 45 ++- .../SecFspWrapperPlatformSecLib.inf | 18 +- .../MinPlatformPkg/Include/Fdf/RuleInclude.fdf | 19 +- .../Tools/Fsp/RebaseAndPatchFspBinBaseAddress.py | 2 +- .../MinPlatformPkg/Tools/PatchFv/PatchBinFv.py | 16 +- .../MinPlatformPkg/Tools/PatchFv/RebaseBinFv.py | 23 +- Platform/Intel/Readme.md | 31 +- Platform/Intel/build_bios.py | 25 +- .../Pch/PchInit/Smm/PchInitSmm.h | 11 +- .../Pch/PchInit/Smm/PchPcieSmm.c | 11 +- .../Pch/PchSmiDispatcher/Smm/PchSmm.h | 12 +- .../Pch/PchSmiDispatcher/Smm/PchSmmCore.c | 12 +- 21 files changed, 197 insertions(+), 794 deletions(-) delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/PeiCoreEntry.S rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{PeiCoreEntry.asm => PeiCoreEntry.nasm} (59%) delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/SecEntry.S rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{SecEntry.asm => SecEntry.nasm} (69%) delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/Stack.S rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{Stack.asm => Stack.nasm} (50%) -- 2.7.4