X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=lib%2FKconfig;h=867cc4ca4dab7f92b74e9239c70e019f99fb2c69;hb=46e3bdda784a931c77ddb2cf2318a4d126e8e01e;hp=bb0fa27189f683bad75618c8bcb72bccd6632e01;hpb=e794fcffc5212cbde94c58ccbab2fc567a645560;p=karo-tx-uboot.git diff --git a/lib/Kconfig b/lib/Kconfig index bb0fa27189..867cc4ca4d 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -41,12 +41,20 @@ config SYS_VSNPRINTF config REGEX bool "Enable regular expression support" + default y if NET help If this variable is defined, U-Boot is linked against the SLRE (Super Light Regular Expression) library, which adds regex support to some commands, for example "env grep" and "setexpr". +config LIB_RAND + bool "Pseudo-random library support " + help + This library provides pseudo-random number generator functions. + +source lib/dhry/Kconfig + source lib/rsa/Kconfig menu "Hashing Support" @@ -85,4 +93,14 @@ config SHA_PROG_HW_ACCEL is performed in hardware. endmenu +config ERRNO_STR + bool "Enable function for getting errno-related string message" + help + The function errno_str(int errno), returns a pointer to the errno + corresponding text message: + - if errno is null or positive number - a pointer to "Success" message + - if errno is negative - a pointer to errno related message + +source lib/efi/Kconfig + endmenu