2007-07-12 08:47:15 +00:00
|
|
|
# D.U.M.A. - Detect Unintended Memory Access - Memory checker
|
|
|
|
|
2011-05-08 17:02:44 +00:00
|
|
|
## depends on ! BACKEND
|
2016-11-29 07:40:37 +00:00
|
|
|
## depends on ! BARE_METAL
|
2011-05-08 17:02:44 +00:00
|
|
|
|
|
|
|
## help D.U.M.A. - Detect Unintended Memory Access
|
|
|
|
## help A memory bound checker, with additional features.
|
|
|
|
## help Formerly known as Electric Fence.
|
2007-07-12 08:47:15 +00:00
|
|
|
|
|
|
|
config DUMA_SO
|
|
|
|
bool
|
|
|
|
prompt "Build a shared library"
|
2016-09-07 14:24:22 +00:00
|
|
|
depends on SHARED_LIBS
|
|
|
|
default y
|
2007-07-12 08:47:15 +00:00
|
|
|
|
2017-01-30 02:54:13 +00:00
|
|
|
config DUMA_CUSTOM_WRAPPER
|
|
|
|
bool
|
|
|
|
prompt "Install custom D.U.M.A wrapper"
|
|
|
|
default y
|
|
|
|
depends on DUMA_SO
|
|
|
|
|
2007-07-12 08:47:15 +00:00
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "D.U.M.A. version"
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
2007-07-12 08:47:15 +00:00
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config DUMA_V_2_5_15
|
2007-07-12 08:47:15 +00:00
|
|
|
bool
|
2009-09-13 15:51:33 +00:00
|
|
|
prompt "2_5_15"
|
2007-07-12 08:47:15 +00:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config DUMA_VERSION
|
|
|
|
string
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2009-08-28 09:33:56 +00:00
|
|
|
default "2_5_15" if DUMA_V_2_5_15
|