summaryrefslogtreecommitdiff
path: root/Config.in
blob: 903ec2cf5d39e18510591ddbdaac968701e61645 (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
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

config ADKVERSION
	string
	option env="ADKVERSION"

mainmenu "OpenADK Configuration"

config MODULES
	bool
	default y

config ADK_HAVE_DOT_CONFIG
	bool
	default y

menu "ADK settings"

config ADK_MAKE_JOBS
	int
	default 1 if ! ADK_MAKE_PARALLEL

config ADK_MAKE_PARALLEL
	prompt "Enable parallel building of packages that claim to support it"
	boolean
	default n

config ADK_MAKE_JOBS
	prompt "How many jobs to use"
	int
	default 2
	depends on ADK_MAKE_PARALLEL
	help
	  The number specified here will be passed to make as N in '-jN'

config ADK_FORCE_PARALLEL
	prompt "Force parallel building of all packages (DANGEROUS)"
	bool
	default n
	depends on ADK_MAKE_PARALLEL
	help
	  Do not enable this! It's for testing purposes only.

endmenu

source "target/Config.in"
source "package/Config.in"