From e80dcf2d8b7be952d05486d158af74822bb9de4f Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Fri, 31 Jan 2020 09:59:25 +0100 Subject: [PATCH] net/application_layer: Add Kconfig file and CoAP menu --- sys/net/Kconfig | 2 +- sys/net/application_layer/Kconfig | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 sys/net/application_layer/Kconfig diff --git a/sys/net/Kconfig b/sys/net/Kconfig index ee6f5991b2..ec70b12027 100644 --- a/sys/net/Kconfig +++ b/sys/net/Kconfig @@ -6,7 +6,7 @@ # menu "Networking" -rsource "application_layer/gcoap/Kconfig" +rsource "application_layer/Kconfig" rsource "gnrc/Kconfig" rsource "sock/Kconfig" diff --git a/sys/net/application_layer/Kconfig b/sys/net/application_layer/Kconfig new file mode 100644 index 0000000000..8dd941a4a1 --- /dev/null +++ b/sys/net/application_layer/Kconfig @@ -0,0 +1,11 @@ +# Copyright (c) 2020 HAW Hamburg +# +# 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. +# +menu "CoAP" + +rsource "gcoap/Kconfig" + +endmenu # CoAP