Kconfig 826 B

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # National Instuments network device configuration
  4. #
  5. config NET_VENDOR_NI
  6. bool "National Instruments 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 National Instruments devices.
  13. If you say Y, you will be asked for your specific device in the
  14. following questions.
  15. if NET_VENDOR_NI
  16. config NI_XGE_MANAGEMENT_ENET
  17. tristate "National Instruments XGE management enet support"
  18. depends on HAS_IOMEM && HAS_DMA
  19. select PHYLIB
  20. select OF_MDIO if OF
  21. help
  22. Simple LAN device for debug or management purposes. Can
  23. support either 10G or 1G PHYs via SFP+ ports.
  24. endif