From 8b0e0d2f526fd931546b9f0d1471696c58aa3b7f Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Thu, 23 Jul 2020 08:32:48 +0200 Subject: [PATCH] boards/native: add native_drivers module to Kconfig --- boards/native/Kconfig | 2 ++ boards/native/drivers/Kconfig | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 boards/native/drivers/Kconfig diff --git a/boards/native/Kconfig b/boards/native/Kconfig index 977cba18b9..87331ba398 100644 --- a/boards/native/Kconfig +++ b/boards/native/Kconfig @@ -24,3 +24,5 @@ config BOARD_NATIVE # Various other features (if any) select HAS_ETHERNET select HAS_MOTOR_DRIVER + +rsource "drivers/Kconfig" diff --git a/boards/native/drivers/Kconfig b/boards/native/drivers/Kconfig new file mode 100644 index 0000000000..1fe03b86ef --- /dev/null +++ b/boards/native/drivers/Kconfig @@ -0,0 +1,14 @@ +# 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. +# + +config MODULE_NATIVE_DRIVERS + bool + depends on BOARD_NATIVE + depends on TEST_KCONFIG + default y + help + Drivers for Native board.