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>
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DISK_DRIVERS
|
|
bool "Disk drivers"
|
|
help
|
|
Disk Driver configuration
|
|
|
|
if DISK_DRIVERS
|
|
|
|
source "drivers/disk/Kconfig.ram"
|
|
source "drivers/disk/Kconfig.flash"
|
|
source "drivers/disk/Kconfig.sdmmc"
|
|
source "drivers/disk/Kconfig.mmc"
|
|
|
|
endif # DISK_DRIVERS
|