Kconfig 668 B

123456789101112131415161718192021222324
  1. config NET_VENDOR_CAVIUM
  2. bool "Cavium devices"
  3. default y
  4. depends on ARCH_CNS3XXX
  5. ---help---
  6. If you have a network (Ethernet) chipset belonging to this class,
  7. say Y.
  8. Note that the answer to this question does not directly affect
  9. the kernel: saying N will just case the configurator to skip all
  10. the questions regarding AMD chipsets. If you say Y, you will be asked
  11. for your specific chipset/driver in the following questions.
  12. if NET_VENDOR_CAVIUM
  13. config CNS3XXX_ETH
  14. tristate "Cavium CNS3xxx Ethernet support"
  15. depends on ARCH_CNS3XXX
  16. select PHYLIB
  17. help
  18. Say Y here if you want to use built-in Ethernet ports
  19. on CNS3XXX processor.
  20. endif