summaryrefslogtreecommitdiff
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorPhilippe Reynes <philippe.reynes@softathome.com>2022-03-28 22:56:56 +0200
committerTom Rini <trini@konsulko.com>2022-03-31 14:12:01 -0400
commitfd210fee1dcbcdcad277f4a20ea16bd6877cc1c2 (patch)
tree4d4119275a593e3e187d7f27cef7683d41b377ff /lib/Kconfig
parent7d44a98517390030ee68c9278fdae9a7b6db3bf2 (diff)
downloadu-boot-fd210fee1dcbcdcad277f4a20ea16bd6877cc1c2.tar.gz
u-boot-fd210fee1dcbcdcad277f4a20ea16bd6877cc1c2.tar.bz2
u-boot-fd210fee1dcbcdcad277f4a20ea16bd6877cc1c2.zip
lib: allow to build asn1 decoder and oid registry in SPL
This commit adds the options: - SPL_ASN1_DECODER - SPL_OID_REGISTRY Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index e749826f22..effe735365 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -809,6 +809,16 @@ config ASN1_DECODER
and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
This option enables the support of the asn1 decoder.
+config SPL_ASN1_DECODER
+ bool
+ help
+ ASN.1 (Abstract Syntax Notation One) is a standard interface
+ description language for defining data structures that can be
+ serialized and deserialized in a cross-platform way. It is
+ broadly used in telecommunications and computer networking,
+ and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
+ This option enables the support of the asn1 decoder in the SPL.
+
config OID_REGISTRY
bool
help
@@ -818,6 +828,15 @@ config OID_REGISTRY
unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
Enable fast lookup object identifier registry.
+config SPL_OID_REGISTRY
+ bool
+ help
+ In computing, object identifiers or OIDs are an identifier mechanism
+ standardized by the International Telecommunication Union (ITU) and
+ ISO/IEC for naming any object, concept, or "thing" with a globally
+ unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
+ Enable fast lookup object identifier registry in the SPL.
+
config SMBIOS_PARSER
bool "SMBIOS parser"
help