Kconfig 399 B

1234567891011121314151617181920212223242526272829
  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 GPIOLIB
  11. depends on CPU_SUBTYPE_SH7203
  12. config SH_RSK7264
  13. bool "RSK2+SH7264"
  14. select GPIOLIB
  15. depends on CPU_SUBTYPE_SH7264
  16. config SH_RSK7269
  17. bool "RSK2+SH7269"
  18. select GPIOLIB
  19. depends on CPU_SUBTYPE_SH7269
  20. endchoice
  21. endif