[IPV6]: Seperate sit driver to extra module

This patch removes the driver of the IPv6-in-IPv4 tunnel driver (sit)
from the IPv6 module. It adds an option to Kconfig which makes it
possible to compile it as a seperate module.

Signed-off-by: Joerg Roedel <joro-lkml@zlug.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Joerg Roedel
2006-10-10 14:47:44 -07:00
committed by David S. Miller
parent effee6a000
commit 989e5b96e1
4 changed files with 18 additions and 3 deletions

View File

@ -850,3 +850,6 @@ int __init sit_init(void)
inet_del_protocol(&sit_protocol, IPPROTO_IPV6);
goto out;
}
module_init(sit_init);
module_exit(sit_cleanup);