summaryrefslogtreecommitdiffstats
path: root/rules/mico.in
blob: bb6f9469ec12b51b39a813e83618ab194ac25649 (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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# configuration for mico

menuconfig MICO
	bool
	select HOST_MICO
	prompt "mico"
	default n
	help
	  MICO is a CORBA ORB. See http://www.mico.com for details.

config MICO_THREAD
	bool
	default y
	prompt "multithreading support"
	depends on MICO
	depends on !MICO_WIRELESS
	help
	  Add support for multithreading. This feature does not work
	  when the wireless support is enabled.

comment "multithreading not available if wireless selected"
	depends on MICO
	depends on MICO_WIRELESS

config MICO_CCM
	bool
	default n
	prompt "build CCM-specific parts"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_COSS
	bool
	default y
	prompt "use MICO COSS"
	depends on MICO
	depends on BROKEN
	help
	  FIXME: This feature needs documentation.

comment "MICO COSS is broken, please send a patch"
	depends on MICO
	depends on !BROKEN

config MICO_CSL2
	bool
	default n
	prompt "CORBASec Level 2"
	depends on MICO
	depends on BROKEN
	help
	  FIXME: This feature needs documentation.

comment "CORBASec Level 2 is broken, please send a patch"
	depends on MICO
	depends on !BROKEN

config MICO_CSIV2
	bool
	default y
	prompt "CSIv2"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

comment "Services"
	depends on MICO

config MICO_SERVICE_NAMING
	bool
	default y
	prompt "Naming Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_RELSHIP
	bool
	default n
	prompt "Relationship Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_EVENTS
	bool
	default y
	prompt "Event Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_STREAM
	bool
	default n
	prompt "Stream Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_PROPERTY
	bool
	default y
	prompt "Property Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_TRADER
	bool
	default n
	prompt "Trading Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_TIME
	bool
	default y
	prompt "Time Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_LIFECYCLE
	bool
	default n
	prompt "Lifecycle Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_SERVICE_EXTERNALIZATION
	bool
	default n
	prompt "Externalization Service"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

comment "Wireless"
	depends on MICO

config MICO_WIRELESS
	bool
	default n
	prompt "Wireless CORBA Support"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_WIRELESS_HOME
	bool
	depends on MICO_WIRELESS
	default n
	prompt "Home Location Agent"
	help
	  FIXME: This feature needs documentation.

config MICO_WIRELESS_TERMINAL
	bool
	depends on MICO_WIRELESS
	default n
	prompt "Wireless CORBA for Terminals"
	help
	  FIXME: This feature needs documentation.

config MICO_WIRELESS_ACCESS
	bool
	default n
	prompt "Wireless CORBA Access Bridge"
	depends on MICO_WIRELESS
	help
	  FIXME: This feature needs documentation.

comment "Other Features"
	depends on MICO

config MICO_MINI_STL
	bool
	default n
	prompt "Use MICO supplied STL"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

config MICO_REPO
	bool
	default n
	prompt "Use gcc's template repository"
	depends on MICO
	help
	  FIXME: This feature needs documentation.

comment "Build Options"
	depends on MICO

config MICO_MINI
	bool
	default n
	prompt "build minimum CORBA ORB only"
	depends on MICO
	help
	  FIXME: This feature needs documentation.