]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-socfpga/Kconfig
ARM: socfpga: move board select into mach-socfpga/Kconfig
[u-boot] / arch / arm / mach-socfpga / Kconfig
1 if ARCH_SOCFPGA
2
3 choice
4         prompt "Altera SOCFPGA board select"
5
6 config TARGET_SOCFPGA_ARRIA5
7         bool "Altera SOCFPGA Arria V"
8
9 config TARGET_SOCFPGA_CYCLONE5
10         bool "Altera SOCFPGA Cyclone V"
11
12 endchoice
13
14 config SYS_BOARD
15         default "socfpga"
16
17 config SYS_VENDOR
18         default "altera"
19
20 config SYS_SOC
21         default "socfpga"
22
23 config SYS_CONFIG_NAME
24         default "socfpga_arria5" if TARGET_SOCFPGA_ARRIA5
25         default "socfpga_cyclone5" if TARGET_SOCFPGA_CYCLONE5
26
27 endif