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