Kconfig 505 B

1234567891011121314151617181920212223
  1. if SH_SDK7780
  2. choice
  3. prompt "SDK7780 options"
  4. default SH_SDK7780_BASE
  5. config SH_SDK7780_STANDALONE
  6. bool "SDK7780 board support"
  7. depends on CPU_SUBTYPE_SH7780
  8. help
  9. Selecting this option will enable support for the
  10. standalone version of the SDK7780. If in doubt, say Y.
  11. config SH_SDK7780_BASE
  12. bool "SDK7780 with base-board support"
  13. depends on CPU_SUBTYPE_SH7780
  14. help
  15. Selecting this option will enable support for the expansion
  16. baseboard devices. If in doubt, say Y.
  17. endchoice
  18. endif