-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
60 lines (44 loc) · 1.27 KB
/
Kconfig
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
mainmenu "Meta Kontron Build Configuration"
choice
prompt "Hardware Platform"
default HW_IMX6UL
config HW_IMX6UL
bool "Kontron Electronics SL/BL i.MX6UL/ULL"
config HW_IMX8MM
bool "Kontron Electronics SL/BL/OSM i.MX8MM"
endchoice
choice
prompt "Yocto/OE Series"
default SERIES_KIRKSTONE
config SERIES_DUNFELL
bool "Yocto Dunfell"
config SERIES_KIRKSTONE
bool "Yocto Kirkstone"
endchoice
config HEAD_BUILD
bool "Use latest HEAD of all layers"
config SHARED_CACHE
bool "Use a shared sstate cache mirror"
config PRODUCTION
bool "Enable Production Build Options"
config KAS_INCLUDE_HW
string
default "kas/ked-mx6ul.yml" if HW_IMX6UL
default "kas/ked-mx8mm.yml" if HW_IMX8MM
config KAS_INCLUDE_SERIES
string
default "kas/series/dunfell.yml" if SERIES_DUNFELL
default "kas/series/kirkstone.yml" if SERIES_KIRKSTONE
config KAS_INCLUDE_HEAD
string
default "kas/dev/head-dunfell.yml" if SERIES_DUNFELL && HEAD_BUILD
default "kas/dev/head-kirkstone.yml" if SERIES_KIRKSTONE && HEAD_BUILD
depends on PRODUCTION
config KAS_INCLUDE_CACHE
string
default "kas/dev/shared-cache.yml"
depends on SHARED_CACHE
config KAS_INCLUDE_PROD
string
default "kas/production.yml"
depends on PRODUCTION