zephyr/subsys/net/l2/virtual/Kconfig
Gerard Marull-Paretas 95fb0ded6b kconfig: remove Enable from boolean prompts
According to Kconfig guidelines, boolean prompts must not start with
"Enable...". The following command has been used to automate the changes
in this patch:

sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig*

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-03-09 15:35:54 +01:00

38 lines
1.0 KiB
Plaintext

# Copyright (c) 2021 Intel Corporation.
# SPDX-License-Identifier: Apache-2.0
menuconfig NET_L2_VIRTUAL
bool "Virtual L2 support"
help
Add a virtual L2 layer driver. This is needed if you have a L2
layer that depends on other L2 layer. Like running VPN on top of
Ethernet.
if NET_L2_VIRTUAL
config NET_L2_VIRTUAL_MGMT
bool "Virtual interface network management interface"
select NET_MGMT
select NET_MGMT_EVENT
help
Enable support net_mgmt virtual interface which can be used to
configure at run-time the L2 settings.
config NET_L2_VIRTUAL_MAX_NAME_LEN
int "Max length of the virtual L2 layer name"
default 32
range 8 128
help
Indicate the max name length, including the terminating NULL byte.
Reduce this value to conserve memory.
module = NET_L2_VIRTUAL
module-dep = NET_LOG
module-str = Log level for virtual L2 layer
module-help = Enables virtual L2 to output debug messages.
source "subsys/net/Kconfig.template.log_config.net"
source "subsys/net/l2/virtual/ipip/Kconfig"
endif # NET_L2_VIRTUAL