Kconfig 333 B

123456789101112131415161718192021222324252627
  1. menu "SuperH architecture"
  2. depends on SH
  3. config CPU_SH4
  4. bool
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_R2DPLUS
  9. bool "Renesas R2D-PLUS"
  10. select CPU_SH4
  11. endchoice
  12. config SYS_ARCH
  13. default "sh"
  14. config SYS_CPU
  15. default "sh4" if CPU_SH4
  16. source "arch/sh/lib/Kconfig"
  17. source "board/renesas/r2dplus/Kconfig"
  18. endmenu