blob: a1f30a2c4ef0931483cf80010ef0674ea5dbbb58 [file] [log] [blame]
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09001menu "Library routines"
2
Masahiro Yamada3f053fe2014-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 Yamada9520b712014-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 Yamadae301fa02014-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
Ruchika Gupta4acd8c42015-01-23 16:01:56 +053030source lib/rsa/Kconfig
Ruchika Gupta2c3822e2015-01-23 16:01:51 +053031
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +090032endmenu