From c4aa9fbd7bb9c36bd71831f3c82c47e7970e7853 Mon Sep 17 00:00:00 2001 From: Jose Alamos Date: Tue, 2 Jun 2020 14:29:50 +0200 Subject: [PATCH] boards/arduino-zero: Add board specific Kconfig symbols --- boards/arduino-zero/Kconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 boards/arduino-zero/Kconfig diff --git a/boards/arduino-zero/Kconfig b/boards/arduino-zero/Kconfig new file mode 100644 index 0000000000..bb1932fa02 --- /dev/null +++ b/boards/arduino-zero/Kconfig @@ -0,0 +1,16 @@ +# 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 BOARD + default "arduino-zero" if BOARD_ARDUINO_ZERO + +config BOARD_ARDUINO_ZERO + bool + default y + select BOARD_COMMON_ARDUINO_ZERO + +source "$(RIOTBOARD)/common/arduino-zero/Kconfig"