summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-09-18 10:32:40 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-09-21 07:51:38 +0200
commit2b7b0cd8d9f71bdf2d6623ead66ef2510095aa0f (patch)
treee8321bfa0b74bf01120681036493c1abf2ca8561 /common/Kconfig
parentbe03313b615d5557c9c3e0cd5c272d16df2efde0 (diff)
downloadbarebox-2b7b0cd8d9f71bdf2d6623ead66ef2510095aa0f.tar.gz
barebox-2b7b0cd8d9f71bdf2d6623ead66ef2510095aa0f.tar.xz
sandbox: rename KASan to ASan
sandbox really has ASan support, that is address sanitizer with the help of the userspace library libasan. In contrast KASan is used on real hardware where we have to implement our own support code. Rename sandbox KASan to ASan to not clash with upcoming KASan support. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/Kconfig b/common/Kconfig
index b350f5c355..3626eb2f29 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1375,11 +1375,11 @@ config PBL_BREAK
source "lib/Kconfig.ubsan"
-config KASAN
- bool "KASAN: runtime memory debugger"
- depends on HAVE_ARCH_KASAN
+config ASAN
+ bool "ASAN: runtime memory debugger"
+ depends on HAVE_ARCH_ASAN
help
- Enables KASAN (KernelAddressSANitizer) - runtime memory debugger,
+ Enables ASAN (AddressSANitizer) - runtime memory debugger,
designed to find out-of-bounds accesses and use-after-free bugs.
config COMPILE_TEST
@@ -1404,5 +1404,5 @@ config DDR_SPD
bool
select CRC_ITU_T
-config HAVE_ARCH_KASAN
+config HAVE_ARCH_ASAN
bool