Unify the drivers/*/Kconfig menuconfig title strings to the format "<class> [(acronym)] [bus] drivers". Including both the full name of the driver class and an acronym makes menuconfig more user friendly as some of the acronyms are less well-known than others. It also improves Kconfig search, both via menuconfig and via the generated Kconfig documentation. Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
27 lines
646 B
Plaintext
27 lines
646 B
Plaintext
# Copyright (c) Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig RETAINED_MEM
|
|
bool "Retained memory drivers"
|
|
help
|
|
Enables support for drivers that can retain their data whilst the
|
|
device is powered (may be lost in low power states).
|
|
|
|
if RETAINED_MEM
|
|
|
|
config RETAINED_MEM_INIT_PRIORITY
|
|
int "Retained memory devices init priority"
|
|
default 40
|
|
help
|
|
Retained memory devices initialization priority,
|
|
|
|
module = RETAINED_MEM
|
|
module-str = retained_mem
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/retained_mem/Kconfig.nrf"
|
|
|
|
source "drivers/retained_mem/Kconfig.zephyr"
|
|
|
|
endif # RETAINED_MEM
|