45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
|
|
#
|
||
|
|
# 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
|