Kconfig.64 919 B

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