cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (1260B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2#
      3# Configuration for 802.1Q VLAN support
      4#
      5
      6config VLAN_8021Q
      7	tristate "802.1Q/802.1ad VLAN Support"
      8	help
      9	  Select this and you will be able to create 802.1Q VLAN interfaces
     10	  on your Ethernet interfaces. 802.1Q VLAN supports almost
     11	  everything a regular Ethernet interface does, including
     12	  firewalling, bridging, and of course IP traffic. You will need
     13	  the 'ip' utility in order to effectively use VLANs.
     14	  See the VLAN web page for more information:
     15	  <http://www.candelatech.com/~greear/vlan.html>
     16
     17	  To compile this code as a module, choose M here: the module
     18	  will be called 8021q.
     19
     20	  If unsure, say N.
     21
     22config VLAN_8021Q_GVRP
     23	bool "GVRP (GARP VLAN Registration Protocol) support"
     24	depends on VLAN_8021Q
     25	select GARP
     26	help
     27	  Select this to enable GVRP end-system support. GVRP is used for
     28	  automatic propagation of registered VLANs to switches.
     29
     30	  If unsure, say N.
     31
     32config VLAN_8021Q_MVRP
     33	bool "MVRP (Multiple VLAN Registration Protocol) support"
     34	depends on VLAN_8021Q
     35	select MRP
     36	help
     37	  Select this to enable MVRP end-system support. MVRP is used for
     38	  automatic propagation of registered VLANs to switches; it
     39	  supersedes GVRP and is not backwards-compatible.
     40
     41	  If unsure, say N.