]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib/Kconfig
net: Fix NET_RANDOM_ETHADDR dependencies
[karo-tx-uboot.git] / lib / Kconfig
1 menu "Library routines"
2
3 config CC_OPTIMIZE_LIBS_FOR_SPEED
4         bool "Optimize libraries for speed"
5         help
6           Enabling this option will pass "-O2" to gcc when compiling
7           under "lib" directory.
8
9           If unsure, say N.
10
11 config LIB_RAND
12         bool
13
14 config HAVE_PRIVATE_LIBGCC
15         bool
16
17 config USE_PRIVATE_LIBGCC
18         bool "Use private libgcc"
19         depends on HAVE_PRIVATE_LIBGCC
20         help
21           This option allows you to use the built-in libgcc implementation
22           of U-boot instead of the one privided by the compiler.
23           If unsure, say N.
24
25 config SYS_HZ
26         int
27         default 1000
28         help
29           The frequency of the timer returned by get_timer().
30           get_timer() must operate in milliseconds and this option must be
31           set to 1000.
32
33 config SYS_VSNPRINTF
34         bool "Enable safe version of sprintf()"
35         help
36           Since sprintf() can overflow its buffer, it is common to use
37           snprintf() instead, which knows the buffer size and can avoid
38           overflow. However, this does increase code size slightly (for
39           Thumb-2, about 420 bytes). Enable this option for safety when
40           using sprintf() with data you do not control.
41
42 config REGEX
43         bool "Enable regular expression support"
44         help
45           If this variable is defined, U-Boot is linked against the
46           SLRE (Super Light Regular Expression) library, which adds
47           regex support to some commands, for example "env grep" and
48           "setexpr".
49
50 config LIB_RAND
51         bool
52
53 source lib/rsa/Kconfig
54
55 menu "Hashing Support"
56
57 config SHA1
58         bool "Enable SHA1 support"
59         help
60           This option enables support of hashing using SHA1 algorithm.
61           The hash is calculated in software.
62           The SHA1 algorithm produces a 160-bit (20-byte) hash value
63           (digest).
64
65 config SHA256
66         bool "Enable SHA256 support"
67         help
68           This option enables support of hashing using SHA256 algorithm.
69           The hash is calculated in software.
70           The SHA256 algorithm produces a 256-bit (32-byte) hash value
71           (digest).
72
73 config SHA_HW_ACCEL
74         bool "Enable hashing using hardware"
75         help
76           This option enables hardware acceleration
77           for SHA1/SHA256 hashing.
78           This affects the 'hash' command and also the
79           hash_lookup_algo() function.
80
81 config SHA_PROG_HW_ACCEL
82         bool "Enable Progressive hashing support using hardware"
83         depends on SHA_HW_ACCEL
84         help
85           This option enables hardware-acceleration for
86           SHA1/SHA256 progressive hashing.
87           Data can be streamed in a block at a time and the hashing
88           is performed in hardware.
89 endmenu
90
91 config ERRNO_STR
92         bool "Enable function for getting errno-related string message"
93         help
94           The function errno_str(int errno), returns a pointer to the errno
95           corresponding text message:
96           - if errno is null or positive number - a pointer to "Success" message
97           - if errno is negative - a pointer to errno related message
98
99 endmenu