summaryrefslogtreecommitdiffstats
path: root/platforms/barebox_mlo.in
blob: 8cdea75f7567468f26aaf7d366ac3beb490e1452 (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
## SECTION=bootloader

menuconfig BAREBOX_MLO
	prompt "barebox mlo                   "
	select HOST_LZOP if BAREBOX_MLO_NEEDS_HOST_LZOP
	bool
	help
	  Build mlo from barebox sources.

if BAREBOX_MLO

config BAREBOX_MLO_VERSION
	prompt "barebox version"		if !BAREBOX
	string
	default "${PTXCONF_BAREBOX_VERSION}"	if BAREBOX
	default "2014.01.0"			if !BAREBOX

config BAREBOX_MLO_MD5
	prompt "barebox source md5sum"		if !BAREBOX
	string
	default "${PTXCONF_BAREBOX_MD5}"	if BAREBOX

config BAREBOX_MLO_ARCH_STRING
	string
	default "arm"			if ARCH_ARM
	default "blackfin"		if ARCH_BLACKFIN
	default "ppc"			if ARCH_PPC
	default "x86"			if ARCH_X86

config BAREBOX_MLO_CONFIG
	prompt "mlo config file"
	string
	default "barebox_mlo.config"
	help
	  This entry specifies the .config file used to compile mlo.

config BAREBOX_MLO_NEEDS_HOST_LZOP
	prompt "barebox needs lzop"
	bool
	help
	  The barebox executable can be compressed. Select this if
	  lzop is used in order to compile lzop for your development
	  host.

endif