Kconfig 336 B

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