Kconfig 438 B

12345678910111213141516171819202122232425262728
  1. if SH_RSK
  2. choice
  3. prompt "RSK+ options"
  4. default SH_RSK7203
  5. config SH_RSK7201
  6. bool "RSK7201"
  7. depends on CPU_SUBTYPE_SH7201
  8. config SH_RSK7203
  9. bool "RSK7203"
  10. select ARCH_REQUIRE_GPIOLIB
  11. depends on CPU_SUBTYPE_SH7203
  12. config SH_RSK7264
  13. bool "RSK2+SH7264"
  14. select ARCH_REQUIRE_GPIOLIB
  15. depends on CPU_SUBTYPE_SH7264
  16. config SH_RSK7269
  17. bool "RSK2+SH7269"
  18. select ARCH_REQUIRE_GPIOLIB
  19. depends on CPU_SUBTYPE_SH7269
  20. endchoice
  21. endif