blob: 0c190d05de4595ae5858aa068572f637290a6a11 [file] [log] [blame]
Doug Zongker9270a202012-01-09 15:16:13 -08001The 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.