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>
28 lines
560 B
Plaintext
28 lines
560 B
Plaintext
# FPGA driver configuration options
|
|
|
|
# Copyright (c) 2021-2022 Antmicro <www.antmicro.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig FPGA
|
|
bool "Field-Programmable Gate Array (FPGA) drivers"
|
|
help
|
|
Enable support for FPGA drivers.
|
|
|
|
if FPGA
|
|
|
|
module = fpga
|
|
module-str = fpga
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config FPGA_SHELL
|
|
bool "FPGA Shell"
|
|
depends on SHELL && FPGA
|
|
help
|
|
Enable FPGA Shell support.
|
|
|
|
source "drivers/fpga/Kconfig.eos_s3"
|
|
source "drivers/fpga/Kconfig.ice40"
|
|
source "drivers/fpga/Kconfig.zynqmp"
|
|
|
|
endif # FPGA
|