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.