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>
16 lines
388 B
Text
16 lines
388 B
Text
# ST Microelectronics STM32L4 MCU series
|
|
|
|
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
# Copyright (c) 2016 BayLibre, SAS
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_SERIES_STM32L4X
|
|
bool "STM32L4x Series MCU"
|
|
select CPU_CORTEX_M4
|
|
select CPU_HAS_FPU
|
|
select SOC_FAMILY_STM32
|
|
select HAS_STM32CUBE
|
|
select CPU_HAS_ARM_MPU
|
|
select HAS_SWO
|
|
help
|
|
Enable support for STM32L4 MCU series
|