Kconfig 808 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Amazon network device configuration
  4. #
  5. config NET_VENDOR_AMAZON
  6. bool "Amazon Devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) device belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about Amazon devices. If you say Y, you will be asked
  13. for your specific device in the following questions.
  14. if NET_VENDOR_AMAZON
  15. config ENA_ETHERNET
  16. tristate "Elastic Network Adapter (ENA) support"
  17. depends on PCI_MSI && !CPU_BIG_ENDIAN
  18. select DIMLIB
  19. help
  20. This driver supports Elastic Network Adapter (ENA)"
  21. To compile this driver as a module, choose M here.
  22. The module will be called ena.
  23. endif #NET_VENDOR_AMAZON