xref: /openbmc/u-boot/board/Arcturus/ucp1020/Kconfig (revision 39665bee)
1if 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
15choice
16	prompt "Target image select"
17
18config TARGET_UCP1020_NOR
19	bool "NOR flash u-boot image"
20
21config TARGET_UCP1020_SPIFLASH
22	bool "SPI flash u-boot image"
23
24endchoice
25
26if TARGET_UCP1020_SPIFLASH
27config UCBOOT
28	bool
29	default y
30
31config SPIFLASH
32	bool
33	default y
34endif
35
36endif
37