mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
235a9d89da
This patch adds a tap character device driver that is based on the IP-VLAN network interface, called ipvtap. An ipvtap device can be created in the same way as an ipvlan device, using 'type ipvtap', and then accessed using the tap user space interface. Signed-off-by: Sainath Grandhi <sainath.grandhi@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
9 lines
157 B
Makefile
9 lines
157 B
Makefile
#
|
|
# Makefile for the Ethernet Ipvlan driver
|
|
#
|
|
|
|
obj-$(CONFIG_IPVLAN) += ipvlan.o
|
|
obj-$(CONFIG_IPVTAP) += ipvtap.o
|
|
|
|
ipvlan-objs := ipvlan_core.o ipvlan_main.o
|