forked from lf-edge/edge-home-orchestration-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
91 lines (72 loc) · 1.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt.
#
mainmenu "Edge-Home-Orchstration Configuration"
config CONFIGFILE
string "Configuration file name"
help
Configuration file name
config DOCKERFILE
string "Dockerfile name"
default "ubuntu"
depends on CONTAINER
help
Configuration file name
choice
prompt "H/W Platform architecture"
default X86_64
config X86_64
bool "x86_64"
---help---
"x86_64 architecture"
config X86
bool "x86"
---help---
"x86 architecture"
config ARM
bool "arm"
---help---
"arm architecture (32 bit)"
config ARM64
bool "arm64"
---help---
"arm64 architecture"
endchoice
choice
prompt "S/W Platform"
default CONTAINER
config CONTAINER
bool "Container"
---help---
"Docker Container"
config NATIVE
bool "Native"
---help---
"Native"
config ANDROID
bool "Android"
---help---
"Android"
endchoice
config MNEDC
bool "MNEDC"
choice
depends on MNEDC
prompt "MNEDC"
config MNEDC_SERVER
bool "MNEDC server"
default n
---help---
"MNEDC Server"
config MNEDC_CLIENT
bool "MNEDC client"
default n
---help---
"MNEDC Client"
endchoice
config SECURE_MODE
bool "Secure Mode is enable"
default y
---help---
"Secure mode is enable"