1menu "SuperH architecture" 2 depends on SH 3 4config SYS_ARCH 5 string 6 default "sh" 7 8choice 9 prompt "Target select" 10 11config TARGET_RSK7203 12 bool "Support rsk7203" 13 14config TARGET_RSK7264 15 bool "Support rsk7264" 16 17config TARGET_RSK7269 18 bool "Support rsk7269" 19 20config TARGET_MPR2 21 bool "Support mpr2" 22 23config TARGET_MS7720SE 24 bool "Support ms7720se" 25 26config TARGET_SHMIN 27 bool "Support shmin" 28 29config TARGET_ESPT 30 bool "Support espt" 31 32config TARGET_MS7722SE 33 bool "Support ms7722se" 34 35config TARGET_MS7750SE 36 bool "Support ms7750se" 37 38config TARGET_AP_SH4A_4A 39 bool "Support ap_sh4a_4a" 40 41config TARGET_AP325RXA 42 bool "Support ap325rxa" 43 44config TARGET_ECOVEC 45 bool "Support ecovec" 46 47config TARGET_MIGOR 48 bool "Support MigoR" 49 50config TARGET_R0P7734 51 bool "Support r0p7734" 52 53config TARGET_R2DPLUS 54 bool "Support r2dplus" 55 56config TARGET_R7780MP 57 bool "Support r7780mp" 58 59config TARGET_SH7752EVB 60 bool "Support sh7752evb" 61 62config TARGET_SH7753EVB 63 bool "Support sh7753evb" 64 65config TARGET_SH7757LCR 66 bool "Support sh7757lcr" 67 68config TARGET_SH7763RDP 69 bool "Support sh7763rdp" 70 71config TARGET_SH7785LCR 72 bool "Support sh7785lcr" 73 74endchoice 75 76source "board/alphaproject/ap_sh4a_4a/Kconfig" 77source "board/espt/Kconfig" 78source "board/mpr2/Kconfig" 79source "board/ms7720se/Kconfig" 80source "board/ms7722se/Kconfig" 81source "board/ms7750se/Kconfig" 82source "board/renesas/MigoR/Kconfig" 83source "board/renesas/ap325rxa/Kconfig" 84source "board/renesas/ecovec/Kconfig" 85source "board/renesas/r0p7734/Kconfig" 86source "board/renesas/r2dplus/Kconfig" 87source "board/renesas/r7780mp/Kconfig" 88source "board/renesas/rsk7203/Kconfig" 89source "board/renesas/rsk7264/Kconfig" 90source "board/renesas/rsk7269/Kconfig" 91source "board/renesas/sh7752evb/Kconfig" 92source "board/renesas/sh7753evb/Kconfig" 93source "board/renesas/sh7757lcr/Kconfig" 94source "board/renesas/sh7763rdp/Kconfig" 95source "board/renesas/sh7785lcr/Kconfig" 96source "board/shmin/Kconfig" 97 98endmenu 99