Doug Zongker | e83b7cf | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1 | The contents of this directory are copied from system/core/adb, with |
| 2 | the following changes: |
| 3 | |
| 4 | adb.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 | |
| 12 | adb.h |
| 13 | - minor changes to match adb.c changes |
| 14 | |
| 15 | sockets.c |
| 16 | - references to JDWP removed |
| 17 | |
| 18 | services.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 | |
| 25 | Android.mk |
| 26 | - only builds in adbd mode; builds as static library instead of a |
| 27 | standalone executable. |