blob: 21dae6d2f6e49cd98a6e91a3efb3bcdcad519535 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
menuconfig DEBUG
bool "Enable debug output"
option debug
if DEBUG
config DEBUG_PRINT_DEBUG
bool "Print debug"
default y
config DEBUG_COLORIZE
bool "Colorize output"
default n
depends on DEBUG_PRINT_DEBUG
config DEBUG_PRINT_LINENUM
bool "Print line number in debug"
default n
depends on DEBUG_PRINT_DEBUG
config DEBUG_PRINT_FILENAME
bool "Print file name in debug"
default n
depends on DEBUG_PRINT_DEBUG
endif
|