kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
86360cb2f7
commit
bd6e04411e
6
Kconfig
6
Kconfig
|
@ -1,10 +1,8 @@
|
|||
# Kconfig - general configuration options
|
||||
# General configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
mainmenu "Zephyr Kernel Configuration"
|
||||
|
||||
source "Kconfig.zephyr"
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
# Kconfig - general configuration options
|
||||
# General configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
||||
# Copyright (c) 2016 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
menu "Modules"
|
||||
|
||||
|
|
|
@ -1,12 +1,9 @@
|
|||
# Kconfig - general architecture configuration options
|
||||
# General architecture configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
||||
# Copyright (c) 2015 Intel Corporation
|
||||
# Copyright (c) 2016 Cadence Design Systems, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
# Include these first so that any properties (e.g. defaults) below can be
|
||||
# overridden (by defining symbols in multiple locations)
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
# ARC options
|
||||
|
||||
#
|
||||
# Copyright (c) 2014, 2019 Wind River Systems, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
menu "ARC Options"
|
||||
depends on ARC
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
# Kconfig - Memory Protection Unit (MPU) configuration options
|
||||
# Memory Protection Unit (MPU) configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2017 Synopsys
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config ARC_MPU_VER
|
||||
int "ARC MPU version"
|
||||
range 2 4
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
# Kconfig - ARM architecture configuration options
|
||||
# ARM architecture configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
|
||||
menu "ARM Options"
|
||||
depends on ARM
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
# Kconfig - ARM core configuration options
|
||||
# ARM core configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2015 Wind River Systems, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config CPU_CORTEX
|
||||
bool
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
# Kconfig - ARM Cortex-M platform configuration options
|
||||
# ARM Cortex-M platform configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
# NOTE: We have the specific core implementations first and outside of the
|
||||
# if CPU_CORTEX_M block so that SoCs can select which core they are using
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
# Kconfig - Memory Protection Unit (MPU) configuration options
|
||||
# Memory Protection Unit (MPU) configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2017 Linaro Limited
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if CPU_HAS_MPU
|
||||
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
# Kconfig - ARM TrustZone-M core configuration options
|
||||
# ARM TrustZone-M core configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2018 Nordic Semiconductor ASA.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config ARM_TRUSTZONE_M
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
# Kconfig - ARM Cortex-R platform configuration options
|
||||
# ARM Cortex-R platform configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2018 Marvell
|
||||
# Copyright (c) 2018 Lexmark International, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
# NOTE: We have the specific core implementations first and outside of the
|
||||
# if CPU_CORTEX_R block so that SoCs can select which core they are using
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2016 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
menu "Nios II Options"
|
||||
depends on NIOS2
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
# Kconfig - General configuration options
|
||||
# General configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2017 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
menu "POSIX (native) Options"
|
||||
depends on ARCH_POSIX
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2016 Jean-Paul Etienne <fractalclone@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
menu "RISCV Options"
|
||||
depends on RISCV
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - x86 general configuration options
|
||||
#
|
||||
# x86 general configuration options
|
||||
|
||||
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig.ia32 - IA32-specific X86 subarchitecture options
|
||||
#
|
||||
# IA32-specific X86 subarchitecture options
|
||||
|
||||
# Copyright (c) 2019 Intel Corp.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig.intel64 - Intel64-specific X86 subarchitecture options
|
||||
#
|
||||
# Intel64-specific X86 subarchitecture options
|
||||
|
||||
# Copyright (c) 2019 Intel Corp.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - XTENSA architecture configuration options
|
||||
#
|
||||
# XTENSA architecture configuration options
|
||||
|
||||
# Copyright (c) 2016 Cadence Design Systems, Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
# Kconfig - DesignWare ARC EM Starter Kit board configuration options
|
||||
# DesignWare ARC EM Starter Kit board configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2017 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_EM_STARTERKIT
|
||||
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - DesignWare ARC EM Starter Kit board configuration
|
||||
#
|
||||
# DesignWare ARC EM Starter Kit board configuration
|
||||
|
||||
# Copyright (c) 2016 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_EM_STARTERKIT
|
||||
bool "ARC EM Starter Kit"
|
||||
depends on SOC_EMSK
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - DesignWare ARC EM Software Development Platform board configuration
|
||||
#
|
||||
# DesignWare ARC EM Software Development Platform board configuration
|
||||
|
||||
# Copyright (c) 2019 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_EMSDP
|
||||
bool "EM Software Development Platform"
|
||||
depends on SOC_ARC_EMSDP
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - DesignWare ARC EM Software Development Platform board configuration
|
||||
#
|
||||
# DesignWare ARC EM Software Development Platform board configuration
|
||||
|
||||
# Copyright (c) 2019 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_EMSDP
|
||||
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - DesignWare ARC HS Development Kit board configuration
|
||||
#
|
||||
# DesignWare ARC HS Development Kit board configuration
|
||||
|
||||
# Copyright (c) 2019 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_HSDK
|
||||
bool "ARC HS Development Kit"
|
||||
depends on SOC_ARC_HSDK
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
#
|
||||
# Copyright (c) 2019 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_HSDK
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - DesignWare ARC IoT Development Kit board configuration
|
||||
#
|
||||
# DesignWare ARC IoT Development Kit board configuration
|
||||
|
||||
# Copyright (c) 2018 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_IOTDK
|
||||
bool "ARC IoT Development Kit"
|
||||
depends on SOC_ARC_IOT
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - DesignWare ARC nSIM simulated platform configuration
|
||||
#
|
||||
# DesignWare ARC nSIM simulated platform configuration
|
||||
|
||||
# Copyright (c) 2016, 2019 Synopsys, Inc. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_NSIM
|
||||
bool "ARC nSIM simulator"
|
||||
depends on SOC_NSIM
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - 96Boards Argonkey Board Configuration
|
||||
#
|
||||
# 96Boards Argonkey Board Configuration
|
||||
|
||||
# Copyright (c) 2018 STMicroelectronics
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_ARGONKEY
|
||||
bool "96Boards Argonkey"
|
||||
depends on SOC_STM32F412CG
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards Argonkey Board Configuration
|
||||
#
|
||||
# 96Boards Argonkey Board Configuration
|
||||
|
||||
# Copyright (c) 2018 STMicroelectronics
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_ARGONKEY
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards Avenger96 board configuration
|
||||
#
|
||||
# 96Boards Avenger96 board configuration
|
||||
|
||||
# Copyright (c) 2019 Linaro Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_AVENGER96
|
||||
bool "96Boards Avenger96 Board"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards Avenger96 board configuration
|
||||
#
|
||||
# 96Boards Avenger96 board configuration
|
||||
|
||||
# Copyright (c) 2019 Linaro Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_AVENGER96
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96boards Carbon STMF401RE board configuration
|
||||
#
|
||||
# 96boards Carbon STMF401RE board configuration
|
||||
|
||||
# Copyright (c) 2016 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_CARBON
|
||||
bool "96Boards Carbon (STM32F401)"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96boards Carbon board configuration
|
||||
#
|
||||
# 96boards Carbon board configuration
|
||||
|
||||
# Copyright (c) 2016 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_CARBON
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - 96Boards Carbon nRF51 board configuration
|
||||
#
|
||||
# 96Boards Carbon nRF51 board configuration
|
||||
|
||||
# Copyright (c) 2016, 2017 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_96B_CARBON_NRF51
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - 96Boards Carbon nRF51 board default configuration
|
||||
#
|
||||
# 96Boards Carbon nRF51 board default configuration
|
||||
|
||||
# Copyright (c) 2016, 2017 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_96B_CARBON_NRF51
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards Meerkat96 board
|
||||
#
|
||||
# 96Boards Meerkat96 board
|
||||
|
||||
# Copyright (c) 2019, Linaro Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_MEERKAT96
|
||||
bool "96Boards Meerkat96 board"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards Meerkat96 board
|
||||
#
|
||||
# 96Boards Meerkat96 board
|
||||
|
||||
# Copyright (c) 2019, Linaro Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_MEERKAT96
|
||||
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Kconfig - 96Boards Neonkey Board Configuration
|
||||
#
|
||||
# 96Boards Neonkey Board Configuration
|
||||
|
||||
# Copyright (c) 2017 Linaro Limited
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_NEONKEY
|
||||
bool "96Boards Neonkey"
|
||||
depends on SOC_STM32F411XE
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards Neonkey Board Configuration
|
||||
#
|
||||
# 96Boards Neonkey Board Configuration
|
||||
|
||||
# Copyright (c) 2017 Linaro Limited
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_NEONKEY
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - 96Boards NITROGEN board configuration
|
||||
#
|
||||
# 96Boards NITROGEN board configuration
|
||||
|
||||
# Copyright (c) 2016 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_96B_NITROGEN
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - 96Boards NITROGEN board configuration
|
||||
#
|
||||
# 96Boards NITROGEN board configuration
|
||||
|
||||
# Copyright (c) 2016 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_96B_NITROGEN
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - 96Boards NITROGEN board configuration
|
||||
#
|
||||
# 96Boards NITROGEN board configuration
|
||||
|
||||
# Copyright (c) 2016 Nordic Semiconductor ASA
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_96B_NITROGEN
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards STM32 Sensor Mezzanine board configuration
|
||||
#
|
||||
# 96Boards STM32 Sensor Mezzanine board configuration
|
||||
|
||||
# Copyright (c) 2018 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_STM32_SENSOR_MEZ
|
||||
bool "96Boards STM32 Sensor Mezzanine Board"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96Boards STM32 Sensor Mezzanine board configuration
|
||||
#
|
||||
# 96Boards STM32 Sensor Mezzanine board configuration
|
||||
|
||||
# Copyright (c) 2018 Linaro Limited.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_STM32_SENSOR_MEZ
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96boards WisTrio board configuration
|
||||
#
|
||||
# 96boards WisTrio board configuration
|
||||
|
||||
# Copyright (c) 2019 Linaro Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_96B_WISTRIO
|
||||
bool "96boards WisTrio Development Board"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - 96boards WisTrio board configuration
|
||||
#
|
||||
# 96boards WisTrio board configuration
|
||||
|
||||
# Copyright (c) 2019 Linaro Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_96B_WISTRIO
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Actinius Icarus board configuration
|
||||
#
|
||||
# Actinius Icarus board configuration
|
||||
|
||||
# Copyright (c) 2019 Actinius
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_ACTINIUS_ICARUS || BOARD_ACTINIUS_ICARUS_NS
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Actinius Icarus board configuration
|
||||
#
|
||||
# Actinius Icarus board configuration
|
||||
|
||||
# Copyright (c) 2019 Actinius
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_NRF9160_SICA
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Actinius Icarus board configuration
|
||||
#
|
||||
# Actinius Icarus board configuration
|
||||
|
||||
# Copyright (c) 2019 Actinius
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_ACTINIUS_ICARUS || BOARD_ACTINIUS_ICARUS_NS
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Adafruit Feather M0 Basic Proto board configuration
|
||||
#
|
||||
# Adafruit Feather M0 Basic Proto board configuration
|
||||
|
||||
# Copyright (c) 2018 Henrik Brix Andersen <henrik@brixandersen.dk>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_ADAFRUIT_FEATHER_M0_BASIC_PROTO
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Adafruit Feather M0 Basic Proto board configuration
|
||||
#
|
||||
# Adafruit Feather M0 Basic Proto board configuration
|
||||
|
||||
# Copyright (c) 2018 Henrik Brix Andersen <henrik@brixandersen.dk>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_ADAFRUIT_FEATHER_M0_BASIC_PROTO
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - Adafruit Trinket M0 board configuration
|
||||
#
|
||||
# Adafruit Trinket M0 board configuration
|
||||
|
||||
# Copyright (c) 2018 Google LLC.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - Adafruit Trinket M0 board configuration
|
||||
#
|
||||
# Adafruit Trinket M0 board configuration
|
||||
|
||||
# Copyright (c) 2018 Google LLC.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - Arduino Due Board configuration
|
||||
#
|
||||
# Arduino Due Board configuration
|
||||
|
||||
# Copyright (c) 2017 Justin Watson
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_ARDUINO_DUE
|
||||
bool "Arduino Due Board"
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - Arduino Due Board configuration
|
||||
#
|
||||
# Arduino Due Board configuration
|
||||
|
||||
# Copyright (c) 2017 Justin Watson
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_ARDUINO_DUE
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - Arduino Zero Board configuration
|
||||
#
|
||||
# Arduino Zero Board configuration
|
||||
|
||||
# Copyright (c) 2017 Google LLC.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - Arduino Zero board configuration
|
||||
#
|
||||
# Arduino Zero board configuration
|
||||
|
||||
# Copyright (c) 2017 Google LLC.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - SAM D20 Xplained Pro Board configuration
|
||||
#
|
||||
# SAM D20 Xplained Pro Board configuration
|
||||
|
||||
# Copyright (c) 2018 Sean Nyekjaer
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - SAM D20 Xplained Pro board configuration
|
||||
#
|
||||
# SAM D20 Xplained Pro board configuration
|
||||
|
||||
# Copyright (c) 2018 Sean Nyekjaer
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - SAM D21 Xplained Pro Board configuration
|
||||
#
|
||||
# SAM D21 Xplained Pro Board configuration
|
||||
|
||||
# Copyright (c) 2018 Bryan O'Donoghue
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - SAM D21 Xplained Pro board configuration
|
||||
#
|
||||
# SAM D21 Xplained Pro board configuration
|
||||
|
||||
# Copyright (c) 2018 Bryan O'Donoghue
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - SAM R21 Xplained Pro Board configuration
|
||||
#
|
||||
# SAM R21 Xplained Pro Board configuration
|
||||
|
||||
# Copyright (c) 2019 Benjamin Valentin
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Kconfig - SAM R21 Xplained Pro board configuration
|
||||
#
|
||||
# SAM R21 Xplained Pro board configuration
|
||||
|
||||
# Copyright (c) 2019 Benjamin Valentin
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - STMicroelectronics B-L072Z-LRWAN1 Discovery board configuration
|
||||
#
|
||||
# STMicroelectronics B-L072Z-LRWAN1 Discovery board configuration
|
||||
|
||||
# Copyright (c) 2018 Aleksandr Makarov <aleksandr.o.makarov@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_B_L072Z_LRWAN1
|
||||
bool "STMicroelectronics B-L072Z-LRWAN1 Discovery kit"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - STMicroelectronics B-L072Z-LRWAN1 Discovery board configuration
|
||||
#
|
||||
# STMicroelectronics B-L072Z-LRWAN1 Discovery board configuration
|
||||
|
||||
# Copyright (c) 2018 Aleksandr Makarov <aleksandr.o.makarov@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_B_L072Z_LRWAN1
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - nRF51 BBC_MICROBIT board configuration
|
||||
#
|
||||
# nRF51 BBC_MICROBIT board configuration
|
||||
|
||||
# Copyright (c) 2016 Nordic Semiconductor ASA.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_BBC_MICROBIT
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - nRF51 BBC_MICROBIT board configuration
|
||||
#
|
||||
# nRF51 BBC_MICROBIT board configuration
|
||||
|
||||
# Copyright (c) 2016 Nordic Semiconductor ASA
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_BBC_MICROBIT
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - BL652 DVK board configuration
|
||||
#
|
||||
# BL652 DVK board configuration
|
||||
|
||||
# Copyright (c) 2019 Laird Connectivity
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_BL652_DVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - BL652 DVK board configuration
|
||||
#
|
||||
# BL652 DVK board configuration
|
||||
|
||||
# Copyright (c) 2019 Laird Connectivity
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_BL652_DVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - BL652 DVK board configuration
|
||||
#
|
||||
# BL652 DVK board configuration
|
||||
|
||||
# Copyright (c) 2019 Laird Connectivity
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_BL652_DVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - BL654 DVK board configuration
|
||||
#
|
||||
# BL654 DVK board configuration
|
||||
|
||||
# Copyright (c) 2019 Laird Connectivity
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_BL654_DVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - BL654 DVK board configuration
|
||||
#
|
||||
# BL654 DVK board configuration
|
||||
|
||||
# Copyright (c) 2019 Laird Connectivity
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_BL654_DVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - BL654 DVK board configuration
|
||||
#
|
||||
# BL654 DVK board configuration
|
||||
|
||||
# Copyright (c) 2019 Laird Connectivity
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_BL654_DVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - TI CC1352R LaunchXL board
|
||||
#
|
||||
# TI CC1352R LaunchXL board
|
||||
|
||||
# Copyright (c) 2019 Brett Witherspoon
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_CC1352R1_LAUNCHXL
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - TI CC1352R LaunchXL board
|
||||
#
|
||||
# TI CC1352R LaunchXL board
|
||||
|
||||
# Copyright (c) 2019 Brett Witherspoon
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_CC1352R1_LAUNCHXL
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# TI CC2650 SensorTag configuration
|
||||
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Kconfig - TI CC2650 SensorTag configuration
|
||||
#
|
||||
|
||||
if BOARD_CC2650_SENSORTAG
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# TI SimpleLink CC2650 SensorTag Board
|
||||
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Kconfig - TI SimpleLink CC2650 SensorTag Board
|
||||
#
|
||||
|
||||
config BOARD_CC2650_SENSORTAG
|
||||
bool "TI CC2650 SensorTag"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# TI CC2650 SensorTag board configuration
|
||||
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# Kconfig - TI CC2650 SensorTag board configuration
|
||||
#
|
||||
|
||||
if BOARD_CC2650_SENSORTAG
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - TI CC26x2R1 LaunchXL board
|
||||
#
|
||||
# TI CC26x2R1 LaunchXL board
|
||||
|
||||
# Copyright (c) 2019 Brett Witherspoon
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_CC26X2R1_LAUNCHXL
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - TI CC26x2R1 LaunchXL board
|
||||
#
|
||||
# TI CC26x2R1 LaunchXL board
|
||||
|
||||
# Copyright (c) 2019 Brett Witherspoon
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_CC26X2R1_LAUNCHXL
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
# TI SimpleLink CC3220SF LaunchXL Board
|
||||
|
||||
# Kconfig - TI SimpleLink CC3220SF LaunchXL Board
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_CC3220SF_LAUNCHXL
|
||||
bool "TI CC3220SF LAUNCHXL"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
# TI CC3220SF LaunchXL board configuration
|
||||
|
||||
# Kconfig - TI CC3220SF LaunchXL board configuration
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_CC3220SF_LAUNCHXL
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Copyright (c) 2019, Texas Instruments Incorporated
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
# TI SimpleLink CC3235SF LaunchXL Board
|
||||
|
||||
# Kconfig - TI SimpleLink CC3235SF LaunchXL Board
|
||||
#
|
||||
# Copyright (c) 2019, Texas Instruments Incorporated
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_CC3235SF_LAUNCHXL
|
||||
bool "TI CC3235SF LAUNCHXL"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Copyright (c) 2019, Texas Instruments Incorporated
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
# TI CC3235SF LaunchXL board configuration
|
||||
|
||||
# Kconfig - TI CC3235SF LaunchXL board configuration
|
||||
#
|
||||
# Copyright (c) 2019, Texas Instruments Incorporated
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_CC3235SF_LAUNCHXL
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - Colibri iMX7D M4 board
|
||||
#
|
||||
# Colibri iMX7D M4 board
|
||||
|
||||
# Copyright (c) 2017, NXP
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_COLIBRI_IMX7D_M4
|
||||
bool "Toradex Colibri iMX7 Dual"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - Colibri iMX7D M4 board
|
||||
#
|
||||
# Colibri iMX7D M4 board
|
||||
|
||||
# Copyright (c) 2017, NXP
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_COLIBRI_IMX7D_M4
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
#
|
||||
# PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
|
||||
# Copyright (c) 2018 Cypress
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_CY8CKIT_062_WIFI_BT_M0
|
||||
bool "PSoC6 WiFi-BT Pioneer Kit M0"
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
#
|
||||
# PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
|
||||
# Copyright (c) 2018 Cypress
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_CY8CKIT_062_WIFI_BT_M0
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
#
|
||||
# PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
|
||||
# Copyright (c) 2018 Cypress
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_CY8CKIT_062_WIFI_BT_M4
|
||||
bool "PSoC6 WiFi-BT Pioneer Kit M4"
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
#
|
||||
# PSoC6 WiFi-BT Pioneer Kit configuration
|
||||
|
||||
# Copyright (c) 2018 Cypress
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_CY8CKIT_062_WIFI_BT_M4
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Degu Evaluation Kit configuration
|
||||
#
|
||||
# Degu Evaluation Kit configuration
|
||||
|
||||
# Copyright (c) 2019 Atmark Techno, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_DEGU_EVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Degu Evaluation Kit configuration
|
||||
#
|
||||
# Degu Evaluation Kit configuration
|
||||
|
||||
# Copyright (c) 2019 Atmark Techno, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_DEGU_EVK
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - Degu Evaluation Kit configuration
|
||||
#
|
||||
# Degu Evaluation Kit configuration
|
||||
|
||||
# Copyright (c) 2019 Atmark Techno, Inc.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_DEGU_EVK
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - Discovery IoT L475 board configuration
|
||||
#
|
||||
# Discovery IoT L475 board configuration
|
||||
|
||||
# Copyright (c) 2017 Linaro Limited
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_DISCO_L475_IOT1
|
||||
bool "Discovery IoT L475 Development Board"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - Discovery IoT L475 board configuration
|
||||
#
|
||||
# Discovery IoT L475 board configuration
|
||||
|
||||
# Copyright (c) 2017 Linaro Limited
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_DISCO_L475_IOT1
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - Dragino LSN50 LoRA Sensor Node board configuration
|
||||
#
|
||||
# Dragino LSN50 LoRA Sensor Node board configuration
|
||||
|
||||
# Copyright (c) 2018 Endre Karlson <endre.karlson@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_DRAGINO_LSN50
|
||||
bool "Dragino LSN50 Sensor Node"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - Dragino LSN50 LoRA Sensor Node board configuration
|
||||
#
|
||||
# Dragino LSN50 LoRA Sensor Node board configuration
|
||||
|
||||
# Copyright (c) 2018 Endre Karlson <endre.karlson@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_DRAGINO_LSN50
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Kconfig - EFM32WG SLSTK3400A board configuration
|
||||
#
|
||||
# EFM32WG SLSTK3400A board configuration
|
||||
|
||||
# Copyright (c) 2017 Christian Taedcke
|
||||
# Copyright (c) 2018 Marcio Montenegro
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_EFM32HG_SLSTK3400A
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - EFM32HG SLSTK3400A board
|
||||
#
|
||||
# EFM32HG SLSTK3400A board
|
||||
|
||||
# Copyright (c) 2018, Marcio Montenegro
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
config BOARD_EFM32HG_SLSTK3400A
|
||||
bool "SiLabs EFM32HG-SLSTK3400A (Happy Gecko)"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# Kconfig - EFM32HG SLSTK3400A board
|
||||
#
|
||||
# EFM32HG SLSTK3400A board
|
||||
|
||||
# Copyright (c) 2018, Marcio Montenegro
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if BOARD_EFM32HG_SLSTK3400A
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Kconfig - EFM32PG STK3402A board configuration
|
||||
#
|
||||
# EFM32PG STK3402A board configuration
|
||||
|
||||
# Copyright (c) 2018 Christian Taedcke
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_EFM32PG_STK3402A
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue