Kconfig 812 B

12345678910111213141516171819202122232425262728
  1. #
  2. # LiteX device configuration
  3. #
  4. config NET_VENDOR_LITEX
  5. bool "LiteX devices"
  6. default y
  7. help
  8. If you have a network (Ethernet) card belonging to this class, say Y.
  9. Note that the answer to this question doesn't directly affect the
  10. kernel: saying N will just cause the configurator to skip all
  11. the questions about LiteX devices. If you say Y, you will be asked
  12. for your specific card in the following questions.
  13. if NET_VENDOR_LITEX
  14. config LITEX_LITEETH
  15. tristate "LiteX Ethernet support"
  16. depends on OF && HAS_IOMEM
  17. help
  18. If you wish to compile a kernel for hardware with a LiteX LiteEth
  19. device then you should answer Y to this.
  20. LiteX is a soft system-on-chip that targets FPGAs. LiteETH is a basic
  21. network device that is commonly used in LiteX designs.
  22. endif # NET_VENDOR_LITEX