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