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