Kconfig 455 B

12345678910111213141516171819202122232425262728
  1. if ARCH_SOCFPGA
  2. choice
  3. prompt "Altera SOCFPGA board select"
  4. optional
  5. config TARGET_SOCFPGA_ARRIA5
  6. bool "Altera SOCFPGA Arria V"
  7. config TARGET_SOCFPGA_CYCLONE5
  8. bool "Altera SOCFPGA Cyclone V"
  9. endchoice
  10. config SYS_BOARD
  11. default "socfpga"
  12. config SYS_VENDOR
  13. default "altera"
  14. config SYS_SOC
  15. default "socfpga"
  16. config SYS_CONFIG_NAME
  17. default "socfpga_arria5" if TARGET_SOCFPGA_ARRIA5
  18. default "socfpga_cyclone5" if TARGET_SOCFPGA_CYCLONE5
  19. endif