blob: e0f2798c8a0d28f5e07e76c2b4700faa38a37127 [file] [log] [blame]
Carl van Schaik6d7b2ff2018-07-06 22:00:55 +10001#
2# vServices protocol drivers configuration
3#
4
5if VSERVICES_SERVER || VSERVICES_CLIENT
6
7menu "Protocol drivers"
Carl van Schaik402932a2018-07-06 22:24:59 +10008config VSERVICES_PROTOCOL_BLOCK
9 bool
10
11config VSERVICES_PROTOCOL_BLOCK_SERVER
12 tristate "Block server protocol"
13 depends on VSERVICES_SUPPORT && VSERVICES_SERVER
14 select VSERVICES_PROTOCOL_BLOCK
15 help
16 This option adds support for Virtual Services block protocol server.
17
18config VSERVICES_PROTOCOL_BLOCK_CLIENT
19 tristate "Block client protocol"
20 depends on VSERVICES_SUPPORT && VSERVICES_CLIENT
21 select VSERVICES_PROTOCOL_BLOCK
22 help
23 This option adds support for Virtual Services block protocol client.
24
Carl van Schaik438aa182018-07-06 22:22:42 +100025config VSERVICES_PROTOCOL_SERIAL
26 bool
27
28config VSERVICES_PROTOCOL_SERIAL_SERVER
29 tristate "Serial server protocol"
30 depends on VSERVICES_SUPPORT && VSERVICES_SERVER
31 select VSERVICES_PROTOCOL_SERIAL
32 help
33 This option adds support for Virtual Services serial protocol server.
34
35config VSERVICES_PROTOCOL_SERIAL_CLIENT
36 tristate "Serial client protocol"
37 depends on VSERVICES_SUPPORT && VSERVICES_CLIENT
38 select VSERVICES_PROTOCOL_SERIAL
39 help
40 This option adds support for Virtual Services serial protocol client.
Carl van Schaik6d7b2ff2018-07-06 22:00:55 +100041
42endmenu
43
44endif # VSERVICES_SERVER || VSERVICES_CLIENT