aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'minadbd/README.txt')
-rw-r--r--minadbd/README.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/minadbd/README.txt b/minadbd/README.txt
new file mode 100644
index 00000000..0c190d05
--- /dev/null
+++ b/minadbd/README.txt
@@ -0,0 +1,27 @@
1The contents of this directory are copied from system/core/adb, with
2the following changes:
3
4adb.c
5 - much support for host mode and non-linux OS's stripped out; this
6 version only runs as adbd on the device.
7 - does not setuid/setgid itself (always stays root)
8 - only uses USB transport
9 - references to JDWP removed
10 - main() removed
11
12adb.h
13 - minor changes to match adb.c changes
14
15sockets.c
16 - references to JDWP removed
17
18services.c
19 - all services except echo_service (which is commented out) removed
20 - all host mode support removed
21 - sideload_service() added; this is the only service supported. It
22 receives a single blob of data, writes it to a fixed filename, and
23 makes the process exit.
24
25Android.mk
26 - only builds in adbd mode; builds as static library instead of a
27 standalone executable.