Kconfig 339 B

1234567891011121314151617181920212223
  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. endchoice
  17. endif