summaryrefslogtreecommitdiff
path: root/board/scalys/grapeboard/Kconfig
blob: 72d67cae77eb87cb1f6e8294ef7296a6ba0363c5 (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
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 "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