[edk2-devel] [edk2-platforms] [PATCH 0/5] Added GCC5 build support

Agyeman, Prince posted 5 patches 4 years, 11 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
.../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%)
[edk2-devel] [edk2-platforms] [PATCH 0/5] Added GCC5 build support
Posted by Agyeman, Prince 4 years, 11 months ago
From: Prince Agyeman <prince.agyeman@intel.com>

This patch series adds GCC 5 build support to
ClevoOpenBoardPkg and KabylakeOpenBoardPkg

Cc: Michael Kubacki <michael.a.kubacki@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Ankit Sinha <ankit.sinha@intel.com>

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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#40703): https://edk2.groups.io/g/devel/message/40703
Mute This Topic: https://groups.io/mt/31632302/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-