1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  | if TARGET_UCP1020 
 |    
 |  config SYS_BOARD 
 |      string 
 |      default "ucp1020" 
 |    
 |  config SYS_VENDOR 
 |      string 
 |      default "Arcturus" 
 |    
 |  config SYS_CONFIG_NAME 
 |      string 
 |      default "UCP1020" 
 |    
 |  choice 
 |      prompt "Target image select" 
 |    
 |  config TARGET_UCP1020_NOR 
 |      bool "NOR flash u-boot image" 
 |    
 |  config TARGET_UCP1020_SPIFLASH 
 |      bool "SPI flash u-boot image" 
 |    
 |  endchoice 
 |    
 |  if TARGET_UCP1020_SPIFLASH 
 |  config UCBOOT 
 |      bool 
 |      default y 
 |    
 |  config SPIFLASH 
 |      bool 
 |      default y 
 |  endif 
 |    
 |  endif 
 |  
  |