blob: e0f2798c8a0d28f5e07e76c2b4700faa38a37127 (
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
|
#
# vServices protocol drivers configuration
#
if VSERVICES_SERVER || VSERVICES_CLIENT
menu "Protocol drivers"
config VSERVICES_PROTOCOL_BLOCK
bool
config VSERVICES_PROTOCOL_BLOCK_SERVER
tristate "Block server protocol"
depends on VSERVICES_SUPPORT && VSERVICES_SERVER
select VSERVICES_PROTOCOL_BLOCK
help
This option adds support for Virtual Services block protocol server.
config VSERVICES_PROTOCOL_BLOCK_CLIENT
tristate "Block client protocol"
depends on VSERVICES_SUPPORT && VSERVICES_CLIENT
select VSERVICES_PROTOCOL_BLOCK
help
This option adds support for Virtual Services block protocol client.
config VSERVICES_PROTOCOL_SERIAL
bool
config VSERVICES_PROTOCOL_SERIAL_SERVER
tristate "Serial server protocol"
depends on VSERVICES_SUPPORT && VSERVICES_SERVER
select VSERVICES_PROTOCOL_SERIAL
help
This option adds support for Virtual Services serial protocol server.
config VSERVICES_PROTOCOL_SERIAL_CLIENT
tristate "Serial client protocol"
depends on VSERVICES_SUPPORT && VSERVICES_CLIENT
select VSERVICES_PROTOCOL_SERIAL
help
This option adds support for Virtual Services serial protocol client.
endmenu
endif # VSERVICES_SERVER || VSERVICES_CLIENT
|