diff options
author | Abner Chang <abner.chang@hpe.com> | 2020-12-04 12:30:05 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-01-09 03:08:51 +0000 |
commit | 6e9233f968735219b2038c5dd23a46be2c021807 (patch) | |
tree | b670be263c6cb774c6c9714501fba286cc10d3f4 /RedfishPkg/RedfishPkg.ci.yaml | |
parent | a88731d5453fedaa389827139abc3c22a99ec460 (diff) | |
download | edk2-6e9233f968735219b2038c5dd23a46be2c021807.tar.gz edk2-6e9233f968735219b2038c5dd23a46be2c021807.tar.bz2 edk2-6e9233f968735219b2038c5dd23a46be2c021807.zip |
RedfishPkg/RedfishCrtLib: Redfish C runtime library
Redfish CRT library is currently used by edk2 JsonLib
(open source jansson project) and edk2 RedfishLib
(libredfish open source project). Redfish CrtLib library
provides the necessary C runtime equivalent edk2 functions
for open source projects.
Signed-off-by: Abner Chang <abner.chang@hpe.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Nickle Wang <nickle.wang@hpe.com>
Cc: Peter O'Hanley <peter.ohanley@hpe.com>
Reviewed-by: Nickle Wang <nickle.wang@hpe.com>
Acked-by: Leif Lindholm <leif@nuviainc.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'RedfishPkg/RedfishPkg.ci.yaml')
-rw-r--r-- | RedfishPkg/RedfishPkg.ci.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/RedfishPkg/RedfishPkg.ci.yaml b/RedfishPkg/RedfishPkg.ci.yaml index 20c297ad22..e410d1a608 100644 --- a/RedfishPkg/RedfishPkg.ci.yaml +++ b/RedfishPkg/RedfishPkg.ci.yaml @@ -17,6 +17,25 @@ ],
## Both file path and directory path are accepted.
"IgnoreFiles": [
+ ## Below are files incorporated with open source which are
+ ## not edk2 coding standard compliant.
+ ##
+ ## EDK2 CRT library which is not edk2 coding
+ ## standard compliant.
+ ## C runtime library for RedfishPkg modules
+ "PrivateInclude/Crt/sys",
+ "PrivateInclude/Crt/assert.h",
+ "PrivateInclude/Crt/errno.h",
+ "PrivateInclude/Crt/limits.h",
+ "PrivateInclude/Crt/math.h",
+ "PrivateInclude/Crt/stdarg.h",
+ "PrivateInclude/Crt/stddef.h",
+ "PrivateInclude/Crt/stdio.h",
+ "PrivateInclude/Crt/stdlib.h",
+ "PrivateInclude/Crt/string.h",
+ "PrivateInclude/Crt/time.h",
+ "PrivateInclude/Library/RedfishCrtLib.h",
+ "PrivateLibrary/RedfishCrtLib/RedfishCrtLib.c"
]
},
"CompilerPlugin": {
|