mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
a7f7f6248d
Since commit 84af7a6194
("checkpatch: kconfig: prefer 'help' over
'---help---'"), the number of '---help---' has been gradually
decreasing, but there are still more than 2400 instances.
This commit finishes the conversion. While I touched the lines,
I also fixed the indentation.
There are a variety of indentation styles found.
a) 4 spaces + '---help---'
b) 7 spaces + '---help---'
c) 8 spaces + '---help---'
d) 1 space + 1 tab + '---help---'
e) 1 tab + '---help---' (correct indentation)
f) 1 tab + 1 space + '---help---'
g) 1 tab + 2 spaces + '---help---'
In order to convert all of them to 1 tab + 'help', I ran the
following commend:
$ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Configuration for 802.1Q VLAN support
|
|
#
|
|
|
|
config VLAN_8021Q
|
|
tristate "802.1Q/802.1ad VLAN Support"
|
|
help
|
|
Select this and you will be able to create 802.1Q VLAN interfaces
|
|
on your Ethernet interfaces. 802.1Q VLAN supports almost
|
|
everything a regular Ethernet interface does, including
|
|
firewalling, bridging, and of course IP traffic. You will need
|
|
the 'ip' utility in order to effectively use VLANs.
|
|
See the VLAN web page for more information:
|
|
<http://www.candelatech.com/~greear/vlan.html>
|
|
|
|
To compile this code as a module, choose M here: the module
|
|
will be called 8021q.
|
|
|
|
If unsure, say N.
|
|
|
|
config VLAN_8021Q_GVRP
|
|
bool "GVRP (GARP VLAN Registration Protocol) support"
|
|
depends on VLAN_8021Q
|
|
select GARP
|
|
help
|
|
Select this to enable GVRP end-system support. GVRP is used for
|
|
automatic propagation of registered VLANs to switches.
|
|
|
|
If unsure, say N.
|
|
|
|
config VLAN_8021Q_MVRP
|
|
bool "MVRP (Multiple VLAN Registration Protocol) support"
|
|
depends on VLAN_8021Q
|
|
select MRP
|
|
help
|
|
Select this to enable MVRP end-system support. MVRP is used for
|
|
automatic propagation of registered VLANs to switches; it
|
|
supersedes GVRP and is not backwards-compatible.
|
|
|
|
If unsure, say N.
|