Kconfig 485 B

12345678910111213141516171819202122232425
  1. if SH_HIGHLANDER
  2. choice
  3. prompt "Highlander options"
  4. default SH_R7780MP
  5. config SH_R7780RP
  6. bool "R7780RP-1 board support"
  7. depends on CPU_SUBTYPE_SH7780
  8. config SH_R7780MP
  9. bool "R7780MP board support"
  10. depends on CPU_SUBTYPE_SH7780
  11. help
  12. Selecting this option will enable support for the mass-production
  13. version of the R7780RP. If in doubt, say Y.
  14. config SH_R7785RP
  15. bool "R7785RP board support"
  16. depends on CPU_SUBTYPE_SH7785
  17. select ARCH_REQUIRE_GPIOLIB
  18. endchoice
  19. endif