1if ARCH_SOCFPGA 2 3choice 4 prompt "Altera SOCFPGA board select" 5 6config TARGET_SOCFPGA_ARRIA5 7 bool "Altera SOCFPGA Arria V" 8 9config TARGET_SOCFPGA_CYCLONE5 10 bool "Altera SOCFPGA Cyclone V" 11 12endchoice 13 14config SYS_BOARD 15 default "socfpga" 16 17config SYS_VENDOR 18 default "altera" 19 20config SYS_SOC 21 default "socfpga" 22 23config SYS_CONFIG_NAME 24 default "socfpga_arria5" if TARGET_SOCFPGA_ARRIA5 25 default "socfpga_cyclone5" if TARGET_SOCFPGA_CYCLONE5 26 27endif 28