Kconfig.64 422 B

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