blob: d309b9ab35a51d8578e23f9daea8ec73551f9736 (
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
|
menuconfig DEBUG
bool "Debug support"
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
|