summaryrefslogtreecommitdiffstats
path: root/platforms/barebox.in
blob: a98fddf744b8dee119a8ff729b2892b2aea7e06a (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
62
## SECTION=bootloader

menuconfig BAREBOX
	select BOOTLOADER
	select KERNEL	if BAREBOX_BTCS
	prompt "barebox                       "
	bool
	help
	  The famous bootloader formerly known as U-Boot V2.

if BAREBOX

config BAREBOX_VERSION
	prompt "barebox version"
	string
	default "2010.10.0"

config BAREBOX_MD5
	prompt "barebox source md5sum"
	string

config BAREBOX_CONFIG
	prompt "config file"
	string
	default "barebox.config"
	help
	  This entry specifies the .config file used to compile
	  barebox.

config BAREBOX_BTCS
	depends on BTCS
	bool "extra dependencies for BTCS"
	help
	  Select this to enable some extra dependencies for btcs,
	  which means "boot time critical service".

config BAREBOX_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_EXTRA_ENV
	prompt "extend the builtin barebox environment"
	bool

config BAREBOX_EXTRA_ENV_PATH
	prompt "env dir"
	string
	default "${PTXDIST_PLATFORMCONFIGDIR}/barebox-defaultenv"
	depends on BAREBOX_EXTRA_ENV

config BAREBOX_BAREBOXENV
	prompt "install 'bareboxenv'"
	bool
	help
	  The tool 'bareboxenv' can be used to manipulate the barebox
	  environment. Enable this option access the barebox environment
	  from the target Linux system.

endif