blob: feca03aeef723dddc79bfbdac3ac22ef83fdb5e3 [file] [log] [blame]
Oleksandr G Zhadan8b0044f2015-04-29 16:57:39 -04001if TARGET_UCP1020
2
3config SYS_BOARD
4 string
5 default "ucp1020"
6
7config SYS_VENDOR
8 string
9 default "Arcturus"
10
11config SYS_CONFIG_NAME
12 string
13 default "UCP1020"
14
15config SPI_FLASH
16 bool
17 default y
18
19config SPI_PCI
20 bool
21 default y
22
23choice
24 prompt "Target image select"
25
26config TARGET_UCP1020_NOR
27 bool "NOR flash u-boot image"
28
29config TARGET_UCP1020_SPIFLASH
30 bool "SPI flash u-boot image"
31
32endchoice
33
34if TARGET_UCP1020_SPIFLASH
35config UCBOOT
36 bool
37 default y
38
39config SPIFLASH
40 bool
41 default y
42endif
43
44endif