From fc555a67022a81005e6ae64ff7758e83d7db8fd9 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 9 Mar 2022 09:12:04 +0100 Subject: [PATCH] sys/bus: model Kconfig --- sys/Kconfig | 1 + sys/bus/Kconfig | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 sys/bus/Kconfig diff --git a/sys/Kconfig b/sys/Kconfig index 7350bbbb8e..ce356f3d6b 100644 --- a/sys/Kconfig +++ b/sys/Kconfig @@ -14,6 +14,7 @@ rsource "base64/Kconfig" rsource "benchmark/Kconfig" rsource "bitfield/Kconfig" rsource "bloom/Kconfig" +rsource "bus/Kconfig" rsource "cb_mux/Kconfig" rsource "checksum/Kconfig" rsource "chunked_ringbuffer/Kconfig" diff --git a/sys/bus/Kconfig b/sys/bus/Kconfig new file mode 100644 index 0000000000..fabd36ba59 --- /dev/null +++ b/sys/bus/Kconfig @@ -0,0 +1,16 @@ +# Copyright (c) 2022 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. +# + +menuconfig MODULE_SYS_BUS + bool "System buses" + select MODULE_CORE_MSG_BUS + help + System buses subsystem. + +config MODULE_SYS_BUS_POWER + bool "Power bus" + depends on MODULE_SYS_BUS