mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
0c2204a4ad
The QRTR nameservice has been maintained in userspace for some time. This commit migrates it to Linux kernel. This change is required in order to eliminate the need of starting a userspace daemon for making the WiFi functional for ath11k based devices. Since the QRTR NS is not usually packed in most of the distros, users need to clone, build and install it to get the WiFi working. It will become a hassle when the user doesn't have any other source of network connectivity. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
7 lines
189 B
Makefile
7 lines
189 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_QRTR) := qrtr.o ns.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
|