diff options
-rw-r--r-- | drivers/net/Makefile | 2 | ||||
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/l2tp/Makefile | 5 | ||||
-rw-r--r-- | net/l2tp/pppol2tp.c (renamed from drivers/net/pppol2tp.c) | 0 |
4 files changed, 7 insertions, 1 deletions
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index ba06c1c0db8b..f8444f439a65 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile | |||
@@ -160,7 +160,7 @@ obj-$(CONFIG_PPP_DEFLATE) += ppp_deflate.o | |||
160 | obj-$(CONFIG_PPP_BSDCOMP) += bsd_comp.o | 160 | obj-$(CONFIG_PPP_BSDCOMP) += bsd_comp.o |
161 | obj-$(CONFIG_PPP_MPPE) += ppp_mppe.o | 161 | obj-$(CONFIG_PPP_MPPE) += ppp_mppe.o |
162 | obj-$(CONFIG_PPPOE) += pppox.o pppoe.o | 162 | obj-$(CONFIG_PPPOE) += pppox.o pppoe.o |
163 | obj-$(CONFIG_PPPOL2TP) += pppox.o pppol2tp.o | 163 | obj-$(CONFIG_PPPOL2TP) += pppox.o |
164 | 164 | ||
165 | obj-$(CONFIG_SLIP) += slip.o | 165 | obj-$(CONFIG_SLIP) += slip.o |
166 | obj-$(CONFIG_SLHC) += slhc.o | 166 | obj-$(CONFIG_SLHC) += slhc.o |
diff --git a/net/Makefile b/net/Makefile index a5eae27aa42d..13ca77e0eb08 100644 --- a/net/Makefile +++ b/net/Makefile | |||
@@ -40,6 +40,7 @@ obj-$(CONFIG_BT) += bluetooth/ | |||
40 | obj-$(CONFIG_SUNRPC) += sunrpc/ | 40 | obj-$(CONFIG_SUNRPC) += sunrpc/ |
41 | obj-$(CONFIG_AF_RXRPC) += rxrpc/ | 41 | obj-$(CONFIG_AF_RXRPC) += rxrpc/ |
42 | obj-$(CONFIG_ATM) += atm/ | 42 | obj-$(CONFIG_ATM) += atm/ |
43 | obj-$(CONFIG_PPPOL2TP) += l2tp/ | ||
43 | obj-$(CONFIG_DECNET) += decnet/ | 44 | obj-$(CONFIG_DECNET) += decnet/ |
44 | obj-$(CONFIG_ECONET) += econet/ | 45 | obj-$(CONFIG_ECONET) += econet/ |
45 | obj-$(CONFIG_PHONET) += phonet/ | 46 | obj-$(CONFIG_PHONET) += phonet/ |
diff --git a/net/l2tp/Makefile b/net/l2tp/Makefile new file mode 100644 index 000000000000..9af41e898a04 --- /dev/null +++ b/net/l2tp/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for the L2TP. | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_PPPOL2TP) += pppol2tp.o | ||
diff --git a/drivers/net/pppol2tp.c b/net/l2tp/pppol2tp.c index 449a9825200d..449a9825200d 100644 --- a/drivers/net/pppol2tp.c +++ b/net/l2tp/pppol2tp.c | |||