1if RCAR_GEN3
2
3choice
4	prompt "Select Target SoC"
5
6config R8A7795
7	bool "Renesas SoC R8A7795"
8
9config R8A7796
10	bool "Renesas SoC R8A7796"
11
12endchoice
13
14choice
15	prompt "Renesus ARM64 SoCs board select"
16	optional
17
18config TARGET_SALVATOR_X
19	bool "Salvator-X board"
20	help
21          Support for Renesas R-Car Gen3 platform
22
23config TARGET_ULCB
24	bool "ULCB board"
25	help
26          Support for Renesas R-Car Gen3 ULCB platform
27
28endchoice
29
30config SYS_SOC
31	default "rmobile"
32
33source "board/renesas/salvator-x/Kconfig"
34source "board/renesas/ulcb/Kconfig"
35
36endif
37