hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
if ARCH_RMOBILE
 
choice
   prompt "Target Renesas SoC select"
   default RCAR_32
 
config RCAR_32
   bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
   select CPU_V7
 
config RCAR_GEN3
   bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
   select ARM64
 
endchoice
 
source "arch/arm/mach-rmobile/Kconfig.32"
source "arch/arm/mach-rmobile/Kconfig.64"
 
endif