c41dd36de2
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>
23 lines
581 B
Plaintext
23 lines
581 B
Plaintext
# Copyright Meta Platforms, Inc. and its affiliates.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig COREDUMP_DEVICE
|
|
bool "Coredump pseudo-device drivers"
|
|
help
|
|
Enable support for a pseudo-device to help capturing
|
|
desired data into core dumps.
|
|
|
|
if COREDUMP_DEVICE
|
|
|
|
config COREDUMP_DEVICE_INIT_PRIORITY
|
|
int "Coredump device init priority"
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
help
|
|
Coredump pseudo-device driver initialization priority.
|
|
|
|
module = COREDUMP_DEVICE
|
|
module-str = coredump device
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif # COREDUMP_DEVICE
|