Remove the # Omit prompt to signify a "hidden" option comments that appear on some symbols. They seem to have been copy-pasted at random, as there are lots of promptless symbols that don't have them (that's confusing in itself, because it might give the idea that the ones with comments are special in some way). I suspect those comments wouldn't have helped me much if I didn't know Kconfig either. There's a lot more Kconfig documentation now too, e.g. https://docs.zephyrproject.org/latest/guides/kconfig/index.html. Keep some comments that give more information than the symbol having no prompt. Also do some minor drive-by cleanup. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
27 lines
594 B
Text
27 lines
594 B
Text
#
|
|
# Copyright (c) 2017, NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config SOC_FAMILY_LPC
|
|
bool
|
|
select HAS_SEGGER_RTT
|
|
|
|
if SOC_FAMILY_LPC
|
|
config SOC_FAMILY
|
|
string
|
|
default "nxp_lpc"
|
|
|
|
source "soc/arm/nxp_lpc/*/Kconfig.soc"
|
|
|
|
config SOC_PART_NUMBER
|
|
string
|
|
default SOC_PART_NUMBER_LPC54XXX if SOC_SERIES_LPC54XXX
|
|
default SOC_PART_NUMBER_LPC55XXX if SOC_SERIES_LPC55XXX
|
|
|
|
help
|
|
This string holds the full part number of the SoC. It is a hidden option
|
|
that you should not set directly. The part number selection choice defines
|
|
the default value for this string.
|
|
endif # SOC_FAMILY_LPC
|