summaryrefslogtreecommitdiff
path: root/board/scalys/grapeboard/Kconfig
blob: 4eb17aa2ad5d76d8f7d80bfa4ba93f8271845fbd (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
if TARGET_GRAPEBOARD

config SYS_BOARD
	default "grapeboard"
	
config SYS_VENDOR
	default "scalys"
	
config SYS_SOC
	default "fsl-layerscape"

config SYS_CONFIG_NAME
	default "grapeboard"
	
menu "Grapeboard configuration options"
	depends on TARGET_GRAPEBOARD
	
choice
	prompt "SERDES configuration for PCIE or SATA"
	default SERDES_D_TO_SATA
	
config SERDES_D_TO_PCIE
	bool
	prompt "Support PCIe"
	
config SERDES_D_TO_SATA
	bool
	prompt "Support SATA (Eth1 disabled)"

endchoice

choice
	prompt "U-boot environment configuration"
	default STANDARD_UBOOT_CONFIG
	
config STANDARD_UBOOT_CONFIG
	bool
	prompt "Standard flash target"
	
config RESCUE_UBOOT_CONFIG
	bool
	prompt "Rescue flash target"
	
endchoice

config PBL_IMAGE
	bool
	default y
	prompt "Append PBL with U-boot in a single binary"
	
config U_BOOT_PAD_TO
	string
	
config PBL_BINARY_SRC
	string
	depends on PBL_IMAGE
	prompt "Select PBL (RCW+PBI) binary source"

endmenu

endif