summaryrefslogtreecommitdiff
path: root/board/scalys/grapeboard/Kconfig
blob: 4a408ce10a31233bf7ec572f5636127bf363bc9d (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
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

config CONCAT_PBL_UBOOT_IMAGE
	bool
	default y
	prompt "Concat PBL and U-boot.bin" 
	help 
		Enable concatenation of PBL binary 'PBL_BINARY_SRC' and 'u-boot.bin' with offset 'UBOOT_TEXT_OFFSET' into a single binary 'u-boot-with-pbl.bin'.
	
config UBOOT_TEXT_OFFSET
	string
	depends on CONCAT_PBL_UBOOT_IMAGE
	default 0x1000
	prompt "Concatenation offset for U-boot.bin to PBL binary"
	help
		See CONCAT_PBL_UBOOT_IMAGE help. Make sure this matches the offset used in the PBI command of the PBL binary and the SYS_TEXT_BASE define.
	
config PBL_BINARY_SRC
	string
	depends on CONCAT_PBL_UBOOT_IMAGE
	default "board/scalys/grapeboard/PBL_0x33_0x05_800_250_1000.bin"
	prompt "See CONCAT_PBL_UBOOT_IMAGE"
	help
		See CONCAT_PBL_UBOOT_IMAGE help.

endmenu

source "board/freescale/common/Kconfig"

endif