From 67391afe1a45cc00dce72dcebf4eed96bcf76380 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Fri, 21 Apr 2023 10:40:19 +0200 Subject: [PATCH] sys/ssp: add missing Kconfig --- sys/Kconfig | 1 + sys/ssp/Kconfig | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 sys/ssp/Kconfig diff --git a/sys/Kconfig b/sys/Kconfig index f658d7e1be..ebc94da3ed 100644 --- a/sys/Kconfig +++ b/sys/Kconfig @@ -99,6 +99,7 @@ rsource "sema_inv/Kconfig" rsource "senml/Kconfig" rsource "seq/Kconfig" rsource "shell/Kconfig" +rsource "ssp/Kconfig" rsource "test_utils/Kconfig" rsource "timex/Kconfig" rsource "tiny_strerror/Kconfig" diff --git a/sys/ssp/Kconfig b/sys/ssp/Kconfig new file mode 100644 index 0000000000..aa55cd105e --- /dev/null +++ b/sys/ssp/Kconfig @@ -0,0 +1,12 @@ +# Copyright (c) 2023 Inria +# +# This file is subject to the terms and conditions of the GNU Lesser +# General Public License v2.1. See the file LICENSE in the top level +# directory for more details. +# + +config MODULE_SSP + bool "Stack Smashing Protector (SSP) helper functions" + depends on TEST_KCONFIG + + select HAS_SSP