You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
457 B
25 lines
457 B
# FPGA driver configuration options |
|
|
|
# Copyright (c) 2021 Antmicro <www.antmicro.com> |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
menuconfig FPGA |
|
bool "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 "Enable FPGA Shell" |
|
depends on SHELL && FPGA |
|
help |
|
Enable FPGA Shell support. |
|
|
|
source "drivers/fpga/Kconfig.eos_s3" |
|
|
|
endif # FPGA
|
|
|