1if RCAR_GEN3 2 3config R8A7795 4 bool 5 6choice 7 prompt "Renesus ARM64 SoCs board select" 8 optional 9 10config TARGET_SALVATOR_X 11 bool "Salvator-X board" 12 select R8A7795 13 help 14 Support for Renesas R-Car Gen3 R8a7795 platform 15 16endchoice 17 18config SYS_SOC 19 default "rmobile" 20 21config RCAR_GEN3_EXTRAM_BOOT 22 bool "Enable boot from RAM" 23 depends on TARGET_SALVATOR_X 24 default n 25 26source "board/renesas/salvator-x/Kconfig" 27 28endif 29