public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Nickle Wang" <nickle.wang@hpe.com>
To: "Chang, Abner (HPS SW/FW Technologist)" <abner.chang@hpe.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: Andrew Fish <afish@apple.com>, Laszlo Ersek <lersek@redhat.com>,
	"Leif Lindholm" <leif@nuviainc.com>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Liming Gao <gaoliming@byosoft.com.cn>,
	"O'Hanley, Peter (EXL)" <peter.ohanley@hpe.com>
Subject: Re: [PATCH v5 2/6] edk2: jansson submodule for edk2 JSON library
Date: Thu, 10 Dec 2020 02:50:07 +0000	[thread overview]
Message-ID: <DF4PR8401MB0812262E4ACEA5BCCA0EC1BFFFCB0@DF4PR8401MB0812.NAMPRD84.PROD.OUTLOOK.COM> (raw)
In-Reply-To: <20201208021048.9104-3-abner.chang@hpe.com>

Reviewed-by: Nickle Wang <nickle.wang@hpe.com>


> -----Original Message-----
> From: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>
> Sent: Tuesday, December 8, 2020 10:11 AM
> To: devel@edk2.groups.io
> Cc: Andrew Fish <afish@apple.com>; Laszlo Ersek <lersek@redhat.com>; Leif
> Lindholm <leif@nuviainc.com>; Michael D Kinney
> <michael.d.kinney@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>;
> Wang, Nickle (HPS SW) <nickle.wang@hpe.com>; O'Hanley, Peter (EXL)
> <peter.ohanley@hpe.com>
> Subject: [PATCH v5 2/6] edk2: jansson submodule for edk2 JSON library
> 
> Add git submodule "jansson" library, which is the open
> source project (https://github.com/akheron/jansson) used
> to manipulate JSON data structure. jansson library is
> wrapped as edk2 JsonLib and the use cases will be the
> edk2 Redfish feature drivers and edk2 port of libredfish
> (https://github.com/DMTF/libredfish).
> jansson open source project is under MIT license.
> (refer to ReadMe.rst under edk2).
> 
> Signed-off-by: Abner Chang <abner.chang@hpe.com>
> 
> Cc: Andrew Fish <afish@apple.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Cc: Leif Lindholm <leif@nuviainc.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Nickle Wang <nickle.wang@hpe.com>
> Cc: Peter O'Hanley <peter.ohanley@hpe.com>
> ---
>  .gitmodules                        | 3 +++
>  ReadMe.rst                         | 1 +
>  RedfishPkg/Library/JsonLib/jansson | 1 +
>  3 files changed, 5 insertions(+)
>  create mode 160000 RedfishPkg/Library/JsonLib/jansson
> 
> diff --git a/.gitmodules b/.gitmodules
> index c3a4e4aeca..0f06c09a29 100644
> --- a/.gitmodules
> +++ b/.gitmodules
> @@ -17,3 +17,6 @@
>  	path = BaseTools/Source/C/BrotliCompress/brotli
>  	url = https://github.com/google/brotli
>  	ignore = untracked
> +[submodule "RedfishPkg/Library/JsonLib/jansson"]
> +	path = RedfishPkg/Library/JsonLib/jansson
> +	url = https://github.com/akheron/jansson
> diff --git a/ReadMe.rst b/ReadMe.rst
> index c3c8178373..b754378646 100644
> --- a/ReadMe.rst
> +++ b/ReadMe.rst
> @@ -93,6 +93,7 @@ that are covered by additional licenses.
>  -  `MdeModulePkg/Library/BrotliCustomDecompressLib/brotli
> <https://github.com/google/brotli/blob/666c3280cc11dc433c303d79a83d4ffb
> dd12cc8d/LICENSE>`__
>  -  `MdeModulePkg/Universal/RegularExpressionDxe/oniguruma
> <https://github.com/kkos/oniguruma/blob/abfc8ff81df4067f309032467785e
> 06975678f0d/COPYING>`__
>  -  `UnitTestFrameworkPkg/Library/CmockaLib/cmocka
> <https://git.cryptomilk.org/projects/cmocka.git/tree/COPYING?h=cmocka-
> 1.1.5&id=f5e2cd77c88d9f792562888d2b70c5a396bfbf7a>`__
> +-  `RedfishPkg/Library/JsonLib/jansson
> <https://github.com/akheron/jansson/blob/2882ead5bb90cf12a01b07b2c23
> 61e24960fae02/LICENSE>`__
> 
>  The EDK II Project is composed of packages. The maintainers for each
> package
>  are listed in `Maintainers.txt <Maintainers.txt>`__.
> diff --git a/RedfishPkg/Library/JsonLib/jansson
> b/RedfishPkg/Library/JsonLib/jansson
> new file mode 160000
> index 0000000000..e9ebfa7e77
> --- /dev/null
> +++ b/RedfishPkg/Library/JsonLib/jansson
> @@ -0,0 +1 @@
> +Subproject commit e9ebfa7e77a6bee77df44e096b100e7131044059
> --
> 2.17.1


  reply	other threads:[~2020-12-10  2:50 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-08  2:10 [PATCH v5 0/6] jansson edk2 port Abner Chang
2020-12-08  2:10 ` [PATCH v5 1/6] RedfishPkg/Ucs2Utf8lib: UCS2 to UFT8 manipulation library Abner Chang
2020-12-10  2:48   ` Nickle Wang
2020-12-10 13:49   ` [edk2-devel] " Samer El-Haj-Mahmoud
2020-12-10 14:27     ` Abner Chang
2020-12-10 16:43       ` Samer El-Haj-Mahmoud
2020-12-11  0:37         ` Abner Chang
2020-12-08  2:10 ` [PATCH v5 2/6] edk2: jansson submodule for edk2 JSON library Abner Chang
2020-12-10  2:50   ` Nickle Wang [this message]
2020-12-08  2:10 ` [PATCH v5 3/6] RedfishPkg/CrtLib: C runtime library Abner Chang
2020-12-10  2:54   ` Nickle Wang
2020-12-08  2:10 ` [PATCH v5 4/6] RedfishPkg/library: EDK2 port of jansson library Abner Chang
2020-12-10  2:58   ` Nickle Wang
2020-12-08  2:10 ` [PATCH v5 5/6] RedfishPkg: Add EDK2 port of jansson library to build Abner Chang
2020-12-10  2:59   ` Nickle Wang
2020-12-08  2:10 ` [PATCH v5 6/6] .pytool: Add required submodule for JsonLib Abner Chang
2020-12-08  6:39 ` 回复: [edk2-devel] [PATCH v5 0/6] jansson edk2 port gaoliming
2020-12-10  2:13   ` Abner Chang
2020-12-10  2:33     ` Michael D Kinney
2020-12-10  4:02       ` Abner Chang
2020-12-11 19:22         ` Michael D Kinney
2020-12-13  4:01           ` Abner Chang
2020-12-14  1:29             ` 回复: " gaoliming
2020-12-14  1:58               ` Abner Chang
2020-12-16  2:08                 ` Abner Chang
2020-12-16  2:57                   ` Michael D Kinney
2020-12-16 15:04                     ` Abner Chang
2020-12-14 16:10           ` Abner Chang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DF4PR8401MB0812262E4ACEA5BCCA0EC1BFFFCB0@DF4PR8401MB0812.NAMPRD84.PROD.OUTLOOK.COM \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox