Config.in 942 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. comment "esp-hosted needs a Linux kernel to be built"
  2. depends on !BR2_s390x
  3. depends on !BR2_LINUX_KERNEL
  4. config BR2_PACKAGE_ESP_HOSTED
  5. bool "esp-hosted"
  6. depends on !BR2_s390x
  7. depends on BR2_LINUX_KERNEL
  8. help
  9. This package builds and installs the Linux kernel driver for
  10. the Esp32-* Linux Wi-Fi driver. It supports both SDIO and SPI
  11. busses that is selectable. It is compatible with recent Linux
  12. kernels (>= 5.4).
  13. if BR2_PACKAGE_ESP_HOSTED
  14. choice
  15. prompt "HW interface"
  16. default BR2_PACKAGE_ESP_HOSTED_SDIO
  17. help
  18. Select which bus type esp is attached to
  19. config BR2_PACKAGE_ESP_HOSTED_SDIO
  20. bool "SDIO"
  21. config BR2_PACKAGE_ESP_HOSTED_SPI
  22. bool "SPI"
  23. endchoice
  24. choice
  25. prompt "Target"
  26. default BR2_PACKAGE_ESP_HOSTED_TARGET_ESP32
  27. help
  28. Select which SoC Target driver is used for
  29. config BR2_PACKAGE_ESP_HOSTED_TARGET_ESP32
  30. bool "ESP32"
  31. config BR2_PACKAGE_ESP_HOSTED_TARGET_ESP32C6
  32. bool "ESP32C6"
  33. endchoice
  34. endif