Kconfig 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. if ATH79
  2. menu "Atheros AR71XX/AR724X/AR913X machine selection"
  3. config ATH79_MACH_AP81
  4. bool "Atheros AP81 reference board"
  5. select SOC_AR913X
  6. select ATH79_DEV_AR913X_WMAC
  7. select ATH79_DEV_GPIO_BUTTONS
  8. select ATH79_DEV_LEDS_GPIO
  9. select ATH79_DEV_SPI
  10. help
  11. Say 'Y' here if you want your kernel to support the
  12. Atheros AP81 reference board.
  13. config ATH79_MACH_PB44
  14. bool "Atheros PB44 reference board"
  15. select SOC_AR71XX
  16. select ATH79_DEV_GPIO_BUTTONS
  17. select ATH79_DEV_LEDS_GPIO
  18. select ATH79_DEV_SPI
  19. help
  20. Say 'Y' here if you want your kernel to support the
  21. Atheros PB44 reference board.
  22. endmenu
  23. config SOC_AR71XX
  24. def_bool n
  25. config SOC_AR724X
  26. def_bool n
  27. config SOC_AR913X
  28. def_bool n
  29. config ATH79_DEV_AR913X_WMAC
  30. depends on SOC_AR913X
  31. def_bool n
  32. config ATH79_DEV_GPIO_BUTTONS
  33. def_bool n
  34. config ATH79_DEV_LEDS_GPIO
  35. def_bool n
  36. config ATH79_DEV_SPI
  37. def_bool n
  38. endif