diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2018-04-26 22:28:49 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-27 15:06:10 -0400 |
commit | 28fb4e59a47d7f1f0c7a26d2ed3a671c26158536 (patch) | |
tree | e60fe9ce43b935d373d11d3e302f76db86b2d17b /net/qrtr/Makefile | |
parent | e6b43d854676f7fde0f72203832af6f76b3d1692 (diff) | |
download | linux-28fb4e59a47d7f1f0c7a26d2ed3a671c26158536.tar.gz linux-28fb4e59a47d7f1f0c7a26d2ed3a671c26158536.tar.bz2 linux-28fb4e59a47d7f1f0c7a26d2ed3a671c26158536.zip |
net: qrtr: Expose tunneling endpoint to user space
This implements a misc character device named "qrtr-tun" for the purpose
of allowing user space applications to implement endpoints in the qrtr
network.
This allows more advanced (and dynamic) testing of the qrtr code as well
as opens up the ability of tunneling qrtr over a network or USB link.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/qrtr/Makefile')
-rw-r--r-- | net/qrtr/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/qrtr/Makefile b/net/qrtr/Makefile index ab09e40f7c74..be012bfd3e52 100644 --- a/net/qrtr/Makefile +++ b/net/qrtr/Makefile @@ -2,3 +2,5 @@ obj-$(CONFIG_QRTR) := qrtr.o obj-$(CONFIG_QRTR_SMD) += qrtr-smd.o qrtr-smd-y := smd.o +obj-$(CONFIG_QRTR_TUN) += qrtr-tun.o +qrtr-tun-y := tun.o |