public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platform patch 0/6] Add tools FMMT FCE and FitGen
@ 2019-06-21  1:26 Zhang, Shenglei
  2019-06-21  1:26 ` [edk2-platform patch 1/6] Platform\Tools: Add a tool FMMT Zhang, Shenglei
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Zhang, Shenglei @ 2019-06-21  1:26 UTC (permalink / raw)
  To: devel; +Cc: Bob Feng, Liming Gao

Add FMMT and FCE into Platform/Intel/Tools.
Add FitGen into Silicon/Intel/Tools.
https://bugzilla.tianocore.org/show_bug.cgi?id=1847
https://bugzilla.tianocore.org/show_bug.cgi?id=1848
https://bugzilla.tianocore.org/show_bug.cgi?id=1849

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Shenglei Zhang (6):
  Platform/Tools: Add a tool FMMT
  Platform/Tools: Add a tool BfmLib
  BaseTools/FCE: Add a tool FCE
  Platform/Tools: Add top level Makefile and GNUMakefile
  Silicon/Tools: Add a tool FitGen
  Silicon/Tools: Add top level Makefile and GNUMakefile

 Platform/Intel/Tools/BfmLib/BfmLib.c          | 4355 +++++++++++
 Platform/Intel/Tools/BfmLib/BinFileManager.c  | 1024 +++
 Platform/Intel/Tools/BfmLib/BinFileManager.h  |  439 ++
 Platform/Intel/Tools/BfmLib/GNUmakefile       |   15 +
 Platform/Intel/Tools/BfmLib/Makefile          |   17 +
 Platform/Intel/Tools/FCE/BinaryCreate.c       |  216 +
 Platform/Intel/Tools/FCE/BinaryCreate.h       |  157 +
 Platform/Intel/Tools/FCE/BinaryParse.c        | 1326 ++++
 Platform/Intel/Tools/FCE/BinaryParse.h        |  187 +
 Platform/Intel/Tools/FCE/Common.c             | 2183 ++++++
 Platform/Intel/Tools/FCE/Common.h             |  999 +++
 Platform/Intel/Tools/FCE/Expression.c         | 2367 ++++++
 Platform/Intel/Tools/FCE/Fce.c                | 6449 +++++++++++++++++
 Platform/Intel/Tools/FCE/Fce.h                |  447 ++
 Platform/Intel/Tools/FCE/GNUmakefile          |   22 +
 Platform/Intel/Tools/FCE/IfrParse.c           | 4836 ++++++++++++
 Platform/Intel/Tools/FCE/IfrParse.h           |  789 ++
 Platform/Intel/Tools/FCE/Makefile             |   19 +
 .../Intel/Tools/FCE/MonotonicBasedVariable.c  |  874 +++
 .../Intel/Tools/FCE/MonotonicBasedVariable.h  |  162 +
 Platform/Intel/Tools/FCE/TimeBasedVariable.c  |  878 +++
 Platform/Intel/Tools/FCE/TimeBasedVariable.h  |  166 +
 Platform/Intel/Tools/FCE/Variable.c           | 1091 +++
 Platform/Intel/Tools/FCE/Variable.h           |  154 +
 Platform/Intel/Tools/FCE/VariableCommon.h     |   55 +
 .../Tools/FMMT/FirmwareModuleManagement.c     | 2559 +++++++
 .../Tools/FMMT/FirmwareModuleManagement.h     |  479 ++
 Platform/Intel/Tools/FMMT/FmmtConf.ini        |    6 +
 Platform/Intel/Tools/FMMT/FmmtLib.c           | 5051 +++++++++++++
 Platform/Intel/Tools/FMMT/GNUmakefile         |   16 +
 Platform/Intel/Tools/FMMT/Makefile            |   17 +
 Platform/Intel/Tools/FMMT/Rebase.c            |  846 +++
 Platform/Intel/Tools/FMMT/Rebase.h            |   31 +
 Platform/Intel/Tools/GNUmakefile              |   30 +
 Platform/Intel/Tools/Makefile                 |   33 +
 Silicon/Intel/Tools/FitGen/FitGen.c           | 3137 ++++++++
 Silicon/Intel/Tools/FitGen/FitGen.h           |   48 +
 Silicon/Intel/Tools/FitGen/GNUmakefile        |   16 +
 Silicon/Intel/Tools/FitGen/Makefile           |   17 +
 Silicon/Intel/Tools/GNUmakefile               |   34 +
 Silicon/Intel/Tools/Makefile                  |   31 +
 41 files changed, 41578 insertions(+)
 create mode 100644 Platform/Intel/Tools/BfmLib/BfmLib.c
 create mode 100644 Platform/Intel/Tools/BfmLib/BinFileManager.c
 create mode 100644 Platform/Intel/Tools/BfmLib/BinFileManager.h
 create mode 100644 Platform/Intel/Tools/BfmLib/GNUmakefile
 create mode 100644 Platform/Intel/Tools/BfmLib/Makefile
 create mode 100644 Platform/Intel/Tools/FCE/BinaryCreate.c
 create mode 100644 Platform/Intel/Tools/FCE/BinaryCreate.h
 create mode 100644 Platform/Intel/Tools/FCE/BinaryParse.c
 create mode 100644 Platform/Intel/Tools/FCE/BinaryParse.h
 create mode 100644 Platform/Intel/Tools/FCE/Common.c
 create mode 100644 Platform/Intel/Tools/FCE/Common.h
 create mode 100644 Platform/Intel/Tools/FCE/Expression.c
 create mode 100644 Platform/Intel/Tools/FCE/Fce.c
 create mode 100644 Platform/Intel/Tools/FCE/Fce.h
 create mode 100644 Platform/Intel/Tools/FCE/GNUmakefile
 create mode 100644 Platform/Intel/Tools/FCE/IfrParse.c
 create mode 100644 Platform/Intel/Tools/FCE/IfrParse.h
 create mode 100644 Platform/Intel/Tools/FCE/Makefile
 create mode 100644 Platform/Intel/Tools/FCE/MonotonicBasedVariable.c
 create mode 100644 Platform/Intel/Tools/FCE/MonotonicBasedVariable.h
 create mode 100644 Platform/Intel/Tools/FCE/TimeBasedVariable.c
 create mode 100644 Platform/Intel/Tools/FCE/TimeBasedVariable.h
 create mode 100644 Platform/Intel/Tools/FCE/Variable.c
 create mode 100644 Platform/Intel/Tools/FCE/Variable.h
 create mode 100644 Platform/Intel/Tools/FCE/VariableCommon.h
 create mode 100644 Platform/Intel/Tools/FMMT/FirmwareModuleManagement.c
 create mode 100644 Platform/Intel/Tools/FMMT/FirmwareModuleManagement.h
 create mode 100644 Platform/Intel/Tools/FMMT/FmmtConf.ini
 create mode 100644 Platform/Intel/Tools/FMMT/FmmtLib.c
 create mode 100644 Platform/Intel/Tools/FMMT/GNUmakefile
 create mode 100644 Platform/Intel/Tools/FMMT/Makefile
 create mode 100644 Platform/Intel/Tools/FMMT/Rebase.c
 create mode 100644 Platform/Intel/Tools/FMMT/Rebase.h
 create mode 100644 Platform/Intel/Tools/GNUmakefile
 create mode 100644 Platform/Intel/Tools/Makefile
 create mode 100644 Silicon/Intel/Tools/FitGen/FitGen.c
 create mode 100644 Silicon/Intel/Tools/FitGen/FitGen.h
 create mode 100644 Silicon/Intel/Tools/FitGen/GNUmakefile
 create mode 100644 Silicon/Intel/Tools/FitGen/Makefile
 create mode 100644 Silicon/Intel/Tools/GNUmakefile
 create mode 100644 Silicon/Intel/Tools/Makefile

-- 
2.18.0.windows.1


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2019-06-26  2:04 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-21  1:26 [edk2-platform patch 0/6] Add tools FMMT FCE and FitGen Zhang, Shenglei
2019-06-21  1:26 ` [edk2-platform patch 1/6] Platform\Tools: Add a tool FMMT Zhang, Shenglei
2019-06-21  1:26 ` [edk2-platform patch 2/6] Platform\Tools: Add a tool BfmLib Zhang, Shenglei
2019-06-21  1:26 ` [edk2-platform patch 3/6] BaseTools\FCE: Add a tool FCE Zhang, Shenglei
2019-06-21  1:26 ` [edk2-platform patch 4/6] Platform\Tools: Add top level Makefile and GNUMakefile Zhang, Shenglei
2019-06-21  1:26 ` [edk2-platform patch 5/6] Silicon\Tools: Add a tool FitGen Zhang, Shenglei
2019-06-26  2:03   ` [edk2-devel] " Liming Gao
2019-06-21  1:26 ` [edk2-platform patch 6/6] Silicon\Tools: Add top level Makefile and GNUMakefile Zhang, Shenglei
2019-06-26  2:04   ` Liming Gao
2019-06-21  2:25 ` [edk2-devel] [edk2-platform patch 0/6] Add tools FMMT FCE and FitGen Yao, Jiewen
2019-06-21  2:31   ` Liming Gao
2019-06-21  3:34     ` Yao, Jiewen
2019-06-25 14:09       ` Liming Gao
2019-06-25 14:14         ` Yao, Jiewen
2019-06-25 15:20           ` Liming Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox