-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTconfig
86 lines (64 loc) · 1.74 KB
/
Tconfig
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
mainmenu "EIBSuite Configuration"
choice
prompt "Target CPU"
config CONFIG_CPU_X86
bool "x86 (Standard PC)"
config CONFIG_CPU_ARM
bool "Arm (Sheeva Plug)"
endchoice
menu "Compilers Configuration"
config CONFIG_C_COMPILER
string "C Compiler command"
default "gcc"
config CONFIG_CPP_COMPILER
string "C++ Compiler command"
default "g++"
config CONFIG_C_LINKER
string "C Linker command"
default "gcc"
config CONFIG_CPP_LINKER
string "C++ Linker command"
default "g++"
endmenu
menu "Packages Configuration"
config CONFIG_JTC_LIB
bool "JTC"
default y
help
this configuration option will build the JTC library. the JTC library contains the Threading and Synchronization code and is required by all EIB Suite applications.
config CONFIG_GSM_LIB
bool "GSMLib library"
default y
config CONFIG_EIB_STD_LIB
bool "EIBStdLib library"
depends on CONFIG_JTC_LIB
default y
config CONFIG_EIB_SERVER
bool "EIBServer application "
depends on CONFIG_EIB_STD_LIB
default y
config CONFIG_WEB_SERVER
bool "WEBServer application"
depends on CONFIG_EIB_STD_LIB
default y
config CONFIG_AMX_SERVER
bool "AMXServer application"
depends on CONFIG_EIB_STD_LIB
default y
config CONFIG_RELAY_SERVER
bool "EIBRelay application"
depends on CONFIG_EIB_STD_LIB
default y
config CONFIG_GENERIC_TEMPLATE
bool "GenericTemplate application"
depends on CONFIG_EIB_STD_LIB
default y
config CONFIG_SMS_SERVER
bool "SMSServer application"
depends on CONFIG_EIB_STD_LIB && CONFIG_GSM_LIB
default y
config CONFIG_EIB_EMULATOR
bool "Emulator application"
depends on CONFIG_EIB_STD_LIB
default y
endmenu