public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* Re: [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for RISC-V platform.
       [not found] <160467C9AEFA0F66.7555@groups.io>
@ 2020-04-21  0:57 ` Liming Gao
  2020-04-21  2:41   ` Abner Chang
  0 siblings, 1 reply; 2+ messages in thread
From: Liming Gao @ 2020-04-21  0:57 UTC (permalink / raw)
  To: devel@edk2.groups.io, Chang, Abner (HPS SW/FW Technologist)

For this change, I suggest to separate it to three patches. One is for tools_def.template, another is for Build Python, last one is for BaseTools C tool. 

-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Chang, Abner (HPS SW/FW Technologist)
Sent: 2020年4月10日 15:47
To: devel@edk2.groups.io
Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>
Subject: [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for RISC-V platform.

BZ for entire RISC-V edk2 port,
https://urldefense.proofpoint.com/v2/url?u=https-3A__bugzilla.tianocore.org_show-5Fbug.cgi-3Fid-3D2672&d=DwIFAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN6FZBN4Vgi4Ulkskz6qU3NYRO03nHp9P7Z5q59A3E&m=-F9g6mAm7GCIMh1Z99KMnTQ87UruBvEOFadrCxs6Fbs&s=sfGS0fehOwf4GO0C1RIwVQJU9RDUWNCfX6t9wxrc8QA&e= 

These commits are verified by below PR,
https://github.com/tianocore/edk2/pull/512

Abner Chang (1):
  BaseTools: BaseTools changes for RISC-V platform.

 BaseTools/Source/C/Common/PeCoffLib.h         |   9 +
 BaseTools/Source/C/GenFw/elf_common.h         |  62 ++++
 .../C/Include/IndustryStandard/PeImage.h      |   6 +
 BaseTools/Source/C/Common/BasePeCoff.c        |  15 +-
 BaseTools/Source/C/Common/PeCoffLoaderEx.c    |  86 ++++++
 BaseTools/Source/C/GenFv/GenFvInternalLib.c   | 128 +++++++-
 BaseTools/Source/C/GenFw/Elf32Convert.c       |   5 +-
 BaseTools/Source/C/GenFw/Elf64Convert.c       | 282 +++++++++++++++++-
 BaseTools/Conf/tools_def.template             |  53 +++-
 BaseTools/Source/Python/Common/DataType.py    |   5 +-
 BaseTools/Source/Python/build/buildoptions.py |   6 +-
 11 files changed, 638 insertions(+), 19 deletions(-)

-- 
2.25.0





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

* Re: [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for RISC-V platform.
  2020-04-21  0:57 ` [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for RISC-V platform Liming Gao
@ 2020-04-21  2:41   ` Abner Chang
  0 siblings, 0 replies; 2+ messages in thread
From: Abner Chang @ 2020-04-21  2:41 UTC (permalink / raw)
  To: Gao, Liming, devel@edk2.groups.io

PATCH V3 sent.

> -----Original Message-----
> From: Gao, Liming [mailto:liming.gao@intel.com]
> Sent: Tuesday, April 21, 2020 8:57 AM
> To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist)
> <abner.chang@hpe.com>
> Subject: RE: [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for
> RISC-V platform.
> 
> For this change, I suggest to separate it to three patches. One is for
> tools_def.template, another is for Build Python, last one is for BaseTools C
> tool.
> 
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Chang,
> Abner (HPS SW/FW Technologist)
> Sent: 2020年4月10日 15:47
> To: devel@edk2.groups.io
> Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>
> Subject: [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for RISC-
> V platform.
> 
> BZ for entire RISC-V edk2 port,
> INVALID URI REMOVED
> 3A__bugzilla.tianocore.org_show-5Fbug.cgi-3Fid-
> 3D2672&d=DwIFAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN6FZBN4Vgi4Ulks
> kz6qU3NYRO03nHp9P7Z5q59A3E&m=-
> F9g6mAm7GCIMh1Z99KMnTQ87UruBvEOFadrCxs6Fbs&s=sfGS0fehOwf4GO0
> C1RIwVQJU9RDUWNCfX6t9wxrc8QA&e=
> 
> These commits are verified by below PR,
> https://github.com/tianocore/edk2/pull/512
> 
> Abner Chang (1):
>   BaseTools: BaseTools changes for RISC-V platform.
> 
>  BaseTools/Source/C/Common/PeCoffLib.h         |   9 +
>  BaseTools/Source/C/GenFw/elf_common.h         |  62 ++++
>  .../C/Include/IndustryStandard/PeImage.h      |   6 +
>  BaseTools/Source/C/Common/BasePeCoff.c        |  15 +-
>  BaseTools/Source/C/Common/PeCoffLoaderEx.c    |  86 ++++++
>  BaseTools/Source/C/GenFv/GenFvInternalLib.c   | 128 +++++++-
>  BaseTools/Source/C/GenFw/Elf32Convert.c       |   5 +-
>  BaseTools/Source/C/GenFw/Elf64Convert.c       | 282 +++++++++++++++++-
>  BaseTools/Conf/tools_def.template             |  53 +++-
>  BaseTools/Source/Python/Common/DataType.py    |   5 +-
>  BaseTools/Source/Python/build/buildoptions.py |   6 +-
>  11 files changed, 638 insertions(+), 19 deletions(-)
> 
> --
> 2.25.0
> 
> 
> 


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

end of thread, other threads:[~2020-04-21  2:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <160467C9AEFA0F66.7555@groups.io>
2020-04-21  0:57 ` [edk2-devel] [PATCH v1 0/1] BaseTools: BaseTools changes for RISC-V platform Liming Gao
2020-04-21  2:41   ` Abner Chang

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