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

Agyeman, Prince posted 5 patches 4 years, 11 months ago
Failed in applying to current master (apply log)
.../N1xxWU/OpenBoardPkgBuildOption.dsc             |   2 +
Platform/Intel/ClevoOpenBoardPkg/OpenBoardPkg.dec  |   4 +-
.../KabylakeRvp3/OpenBoardPkgBuildOption.dsc       |   4 +-
.../Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec    |   6 +-
.../Ia32/PeiCoreEntry.S                            | 117 -------
.../Ia32/{PeiCoreEntry.asm => PeiCoreEntry.nasm}   |  46 +--
.../SecFspWrapperPlatformSecLib/Ia32/SecEntry.S    | 342 ---------------------
.../Ia32/{SecEntry.asm => SecEntry.nasm}           | 132 ++++----
.../SecFspWrapperPlatformSecLib/Ia32/Stack.S       |  67 ----
.../Ia32/{Stack.asm => Stack.nasm}                 |  39 ++-
.../SecFspWrapperPlatformSecLib.inf                |  12 +-
.../MinPlatformPkg/Include/Fdf/RuleInclude.fdf     |   6 +-
.../Tools/Fsp/RebaseAndPatchFspBinBaseAddress.py   |   2 +-
.../MinPlatformPkg/Tools/PatchFv/PatchBinFv.py     |   8 +-
.../MinPlatformPkg/Tools/PatchFv/RebaseBinFv.py    |  15 +-
Platform/Intel/Readme.md                           |  42 +--
Platform/Intel/build_bios.py                       |  28 +-
.../Pch/PchInit/Smm/PchInitSmm.h                   |   3 +-
.../Pch/PchInit/Smm/PchPcieSmm.c                   |   3 +-
.../Pch/PchSmiDispatcher/Smm/PchSmm.h              |   4 +-
.../Pch/PchSmiDispatcher/Smm/PchSmmCore.c          |   4 +-
21 files changed, 187 insertions(+), 699 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} (66%)
delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/SecEntry.S
rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{SecEntry.asm => SecEntry.nasm} (72%)
delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/Stack.S
rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{Stack.asm => Stack.nasm} (59%)
[edk2-devel] [edk2-platforms] [PATCH v2 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

Changes in v2:
- Updated Readme.md
- Updated python path in build_bios.py
- Fixed spelling error in Stack.nasm
- Fixed copyright data in SecFspWrapperPlatformSecLib
- Removed TE Rule from RuleInclude.fdf, updated PE32 alignment to 64

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       |   4 +-
 .../Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec    |   6 +-
 .../Ia32/PeiCoreEntry.S                            | 117 -------
 .../Ia32/{PeiCoreEntry.asm => PeiCoreEntry.nasm}   |  46 +--
 .../SecFspWrapperPlatformSecLib/Ia32/SecEntry.S    | 342 ---------------------
 .../Ia32/{SecEntry.asm => SecEntry.nasm}           | 132 ++++----
 .../SecFspWrapperPlatformSecLib/Ia32/Stack.S       |  67 ----
 .../Ia32/{Stack.asm => Stack.nasm}                 |  39 ++-
 .../SecFspWrapperPlatformSecLib.inf                |  12 +-
 .../MinPlatformPkg/Include/Fdf/RuleInclude.fdf     |   6 +-
 .../Tools/Fsp/RebaseAndPatchFspBinBaseAddress.py   |   2 +-
 .../MinPlatformPkg/Tools/PatchFv/PatchBinFv.py     |   8 +-
 .../MinPlatformPkg/Tools/PatchFv/RebaseBinFv.py    |  15 +-
 Platform/Intel/Readme.md                           |  42 +--
 Platform/Intel/build_bios.py                       |  28 +-
 .../Pch/PchInit/Smm/PchInitSmm.h                   |   3 +-
 .../Pch/PchInit/Smm/PchPcieSmm.c                   |   3 +-
 .../Pch/PchSmiDispatcher/Smm/PchSmm.h              |   4 +-
 .../Pch/PchSmiDispatcher/Smm/PchSmmCore.c          |   4 +-
 21 files changed, 187 insertions(+), 699 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} (66%)
 delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/SecEntry.S
 rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{SecEntry.asm => SecEntry.nasm} (72%)
 delete mode 100644 Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/Stack.S
 rename Platform/Intel/MinPlatformPkg/FspWrapper/Library/SecFspWrapperPlatformSecLib/Ia32/{Stack.asm => Stack.nasm} (59%)

-- 
2.7.4


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

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