mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
70c03b49b8
Add GVRP support for dynamically registering VLANs with switches. By default GVRP is disabled because we only support the applicant-only participant model, which means it should not be enabled on vlans that are members of a bridge. Since there is currently no way to cleanly determine that, the user is responsible for enabling it. The code is pretty small and low impact, its wrapped in a config option though because it depends on the GARP implementation and the STP core. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
212 B
Makefile
10 lines
212 B
Makefile
#
|
|
# Makefile for the Linux VLAN layer.
|
|
#
|
|
|
|
obj-$(CONFIG_VLAN_8021Q) += 8021q.o
|
|
|
|
8021q-y := vlan.o vlan_dev.o vlan_netlink.o
|
|
8021q-$(CONFIG_VLAN_8021Q_GVRP) += vlan_gvrp.o
|
|
8021q-$(CONFIG_PROC_FS) += vlanproc.o
|