blob: 4053230bfe3a38238dbad005d2a9895fe6f24ba5 [file] [log] [blame]
dhendrix@google.com17bee8a2010-06-15 01:41:24 +00001mainmenu "mosys configuration"
2
dhendrix@google.com43535372010-07-02 20:57:30 +00003# Internal stuff
4config KERNELVERSION
5 string
6 option env="KERNELVERSION"
7
dhendrix@google.com17bee8a2010-06-15 01:41:24 +00008menu "General setup"
9config ADVANCED_OPTIONS
dhendrix@google.com27b94612010-12-14 21:20:27 +000010 bool "Advanced configuration"
dhendrix@google.com17bee8a2010-06-15 01:41:24 +000011 default n
12 help
dhendrix@google.com27b94612010-12-14 21:20:27 +000013 This will enable advanced options to be selected and configured
dhendrix@google.com17bee8a2010-06-15 01:41:24 +000014
15config LOGLEVEL
16 int "Log level threshold"
17 range 0 8
18 default 4
19 help
20 Configure the verbosity of print statements in the code. Each 'v'
21 passed in using the command-line will increment the threshold by 1.
22
23 Mnemonic Value Description
24 LOG_EMERG 0 system is unusable
25 LOG_ALERT 1 action must be taken immediately
26 LOG_CRIT 2 critical conditions
27 LOG_ERR 3 error conditions
28 LOG_WARNING 4 warning conditions
29 LOG_NOTICE 5 normal but significant condition
30 LOG_INFO 6 informational
31 LOG_DEBUG 7 debug-level messages
32 LOG_SPEW 8 excessive debug messages
33
dhendrix@google.com15bd9362010-11-29 21:53:26 +000034config DEBUG_INFO
35 bool "Optimize mosys binary for debugging"
36 default n
37 help
38 This will add flags to the compiler to insert debugging info. Use
39 this to debug the actual binary, for example, if you are experiencing
40 instability (segfaults).
41
dhendrix@google.com17bee8a2010-06-15 01:41:24 +000042endmenu
43
44source "platform/Kconfig"
david.hendricks@gmail.com1abcee22011-04-04 03:06:20 +000045source "drivers/Kconfig"
dhendrix@google.comcd8dda62010-06-15 04:38:41 +000046source "tools/Kconfig"