Kconfig 800 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_GPIO_BUTTONS
  7. select ATH79_DEV_LEDS_GPIO
  8. select ATH79_DEV_SPI
  9. help
  10. Say 'Y' here if you want your kernel to support the
  11. Atheros AP81 reference board.
  12. config ATH79_MACH_PB44
  13. bool "Atheros PB44 reference board"
  14. select SOC_AR71XX
  15. select ATH79_DEV_GPIO_BUTTONS
  16. select ATH79_DEV_LEDS_GPIO
  17. select ATH79_DEV_SPI
  18. help
  19. Say 'Y' here if you want your kernel to support the
  20. Atheros PB44 reference board.
  21. endmenu
  22. config SOC_AR71XX
  23. def_bool n
  24. config SOC_AR724X
  25. def_bool n
  26. config SOC_AR913X
  27. def_bool n
  28. config ATH79_DEV_GPIO_BUTTONS
  29. def_bool n
  30. config ATH79_DEV_LEDS_GPIO
  31. def_bool n
  32. config ATH79_DEV_SPI
  33. def_bool n
  34. endif