blob: 30e84ed31537b46b9d5011cbbb153dab4e086a03 [file] [log] [blame]
Masahiro Yamadaed363232014-09-16 16:32:58 +09001menu "Library routines"
2
Masahiro Yamadab0928da2014-09-16 16:32:59 +09003config 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
Masahiro Yamada45ccec82014-10-24 01:30:43 +090011config HAVE_PRIVATE_LIBGCC
12 bool
13
14config USE_PRIVATE_LIBGCC
15 bool "Use private libgcc"
16 depends on HAVE_PRIVATE_LIBGCC
17 help
18 This option allows you to use the built-in libgcc implementation
19 of U-boot instead of the one privided by the compiler.
20 If unsure, say N.
21
Masahiro Yamada8c688bc2014-10-24 01:30:40 +090022config SYS_HZ
23 int
24 default 1000
25 help
26 The frequency of the timer returned by get_timer().
27 get_timer() must operate in milliseconds and this option must be
28 set to 1000.
29
Simon Glass81563452015-03-06 13:19:02 -070030config SYS_VSNPRINTF
31 bool "Enable safe version of sprintf()"
32 help
33 Since sprintf() can overflow its buffer, it is common to use
34 snprintf() instead, which knows the buffer size and can avoid
35 overflow. However, this does increase code size slightly (for
36 Thumb-2, about 420 bytes). Enable this option for safety when
37 using sprintf() with data you do not control.
38
Joe Hershberger1a606502015-04-21 17:02:42 -050039config REGEX
40 bool "Enable regular expression support"
Joe Hershbergerf7848d92015-06-22 17:57:36 -050041 default y if NET
Joe Hershberger1a606502015-04-21 17:02:42 -050042 help
43 If this variable is defined, U-Boot is linked against the
44 SLRE (Super Light Regular Expression) library, which adds
45 regex support to some commands, for example "env grep" and
46 "setexpr".
47
Michal Simek9ba9e852015-05-25 11:37:22 +020048config LIB_RAND
Masahiro Yamada3850dbe2015-06-11 19:16:43 +090049 bool "Pseudo-random library support "
50 help
51 This library provides pseudo-random number generator functions.
Michal Simek9ba9e852015-05-25 11:37:22 +020052
Simon Glassd1389402015-06-23 15:38:23 -060053source lib/dhry/Kconfig
54
Ruchika Guptad9f23c72015-01-23 16:01:56 +053055source lib/rsa/Kconfig
Ruchika Guptac4beb222015-01-23 16:01:51 +053056
Simon Glassa7d660b2015-08-22 18:31:19 -060057config TPM
58 bool "Trusted Platform Module (TPM) Support"
Simon Glass2419cd12015-10-03 06:39:36 -060059 depends on DM
Simon Glassa7d660b2015-08-22 18:31:19 -060060 help
61 This enables support for TPMs which can be used to provide security
62 features for your board. The TPM can be connected via LPC or I2C
63 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
64 command to interactive the TPM. Driver model support is provided
65 for the low-level TPM interface, but only one TPM is supported at
66 a time by the TPM library.
67
gaurav rana94e3c8c2015-02-20 12:51:46 +053068menu "Hashing Support"
69
70config SHA1
71 bool "Enable SHA1 support"
72 help
73 This option enables support of hashing using SHA1 algorithm.
74 The hash is calculated in software.
75 The SHA1 algorithm produces a 160-bit (20-byte) hash value
76 (digest).
77
78config SHA256
79 bool "Enable SHA256 support"
80 help
81 This option enables support of hashing using SHA256 algorithm.
82 The hash is calculated in software.
83 The SHA256 algorithm produces a 256-bit (32-byte) hash value
84 (digest).
85
86config SHA_HW_ACCEL
87 bool "Enable hashing using hardware"
88 help
89 This option enables hardware acceleration
90 for SHA1/SHA256 hashing.
91 This affects the 'hash' command and also the
92 hash_lookup_algo() function.
93
94config SHA_PROG_HW_ACCEL
95 bool "Enable Progressive hashing support using hardware"
96 depends on SHA_HW_ACCEL
97 help
98 This option enables hardware-acceleration for
99 SHA1/SHA256 progressive hashing.
100 Data can be streamed in a block at a time and the hashing
101 is performed in hardware.
102endmenu
103
Julius Werner027b7282015-10-06 20:03:53 -0700104menu "Compression Support"
105
106config LZ4
107 bool "Enable LZ4 decompression support"
108 help
109 If this option is set, support for LZ4 compressed images
110 is included. The LZ4 algorithm can run in-place as long as the
111 compressed image is loaded to the end of the output buffer, and
112 trades lower compression ratios for much faster decompression.
113
114 NOTE: This implements the release version of the LZ4 frame
115 format as generated by default by the 'lz4' command line tool.
116 This is not the same as the outdated, less efficient legacy
117 frame format currently (2015) implemented in the Linux kernel
118 (generated by 'lz4 -l'). The two formats are incompatible.
119
120endmenu
121
Przemyslaw Marczak6501ff62015-04-20 20:07:40 +0200122config ERRNO_STR
123 bool "Enable function for getting errno-related string message"
124 help
125 The function errno_str(int errno), returns a pointer to the errno
126 corresponding text message:
127 - if errno is null or positive number - a pointer to "Success" message
128 - if errno is negative - a pointer to errno related message
129
Simon Glass867a6ac2015-07-31 09:31:36 -0600130source lib/efi/Kconfig
131
Masahiro Yamadaed363232014-09-16 16:32:58 +0900132endmenu