mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
396138f03f
This adds support for the Trailer switch tagging format. This is another tagging that doesn't explicitly mark tagged packets with a distinct ethertype, so that we need to add a similar hack in the receive path as for the Original DSA tagging format. Signed-off-by: Lennert Buytenhek <buytenh@marvell.com> Tested-by: Byron Bradley <byron.bbradley@gmail.com> Tested-by: Tim Ellis <tim.ellis@mac.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
379 B
Makefile
13 lines
379 B
Makefile
# tagging formats
|
|
obj-$(CONFIG_NET_DSA_TAG_DSA) += tag_dsa.o
|
|
obj-$(CONFIG_NET_DSA_TAG_EDSA) += tag_edsa.o
|
|
obj-$(CONFIG_NET_DSA_TAG_TRAILER) += tag_trailer.o
|
|
|
|
# switch drivers
|
|
obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx.o
|
|
obj-$(CONFIG_NET_DSA_MV88E6123_61_65) += mv88e6123_61_65.o
|
|
obj-$(CONFIG_NET_DSA_MV88E6131) += mv88e6131.o
|
|
|
|
# the core
|
|
obj-$(CONFIG_NET_DSA) += dsa.o slave.o
|