You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
#
|
|
# 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
|
|
|