summaryrefslogtreecommitdiff
path: root/qcom/pd-mapper/Android.bp
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2020-02-07 22:26:08 +0530
committerJohn Stultz <john.stultz@linaro.org>2020-03-17 04:10:56 +0000
commitd477f821bb485acbb232cb896e06b99ed98ba25c (patch)
tree2cb8babdc907b5eb23c85cedb70742e360beeba5 /qcom/pd-mapper/Android.bp
parent4789995b56420cfbd17b71dd242b54d36fca6361 (diff)
db845c: qcom: Add userspace tools to talk to dsp and modem
Add Qcom userspace tools and their respective sepolicy rules. Userspace tools are downloaded from following github: To trigger loading of wlan firmware on SDM845 git clone https://github.com/andersson/pd-mapper Userspace reference for net/qrtr in the Linux kernel git clone https://github.com/andersson/qrtr Qualcomm Remote Filesystem Service Implementation git clone https://github.com/andersson/rmtfs Trivial File Transfer Protocol server over AF_QIPCRTR git clone https://github.com/andersson/tqftpserv Change-Id: Ic466af6fef010a9b71c90e38205f49a876b001e2 Signed-off-by: Amit Pundir <amit.pundir@linaro.org> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'qcom/pd-mapper/Android.bp')
-rw-r--r--qcom/pd-mapper/Android.bp9
1 files changed, 9 insertions, 0 deletions
diff --git a/qcom/pd-mapper/Android.bp b/qcom/pd-mapper/Android.bp
new file mode 100644
index 0000000..84c065f
--- /dev/null
+++ b/qcom/pd-mapper/Android.bp
@@ -0,0 +1,9 @@
+cc_binary {
+ name: "pd-mapper",
+ vendor: true,
+ srcs: [
+ "pd-mapper.c",
+ "servreg_loc.c",
+ ],
+ shared_libs: ["libqrtr"],
+}