Kconfig 507 B

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