summaryrefslogtreecommitdiffstats
path: root/adb/commandline.c
diff options
context:
space:
mode:
authorAnthony Newnam <anthony.newnam@garmin.com>2010-02-22 08:36:49 -0600
committerJean-Baptiste Queru <jbq@google.com>2010-04-19 16:36:57 -0700
commit705c944c0e2a50150ffb41707b6b3daebb45cf79 (patch)
treefdd09210eb3c4656387ec8f159133f129e17c517 /adb/commandline.c
parent944f7cadd77614bf930631d79741f2a369ca95f7 (diff)
downloadsystem_core-705c944c0e2a50150ffb41707b6b3daebb45cf79.zip
system_core-705c944c0e2a50150ffb41707b6b3daebb45cf79.tar.gz
system_core-705c944c0e2a50150ffb41707b6b3daebb45cf79.tar.bz2
Add -l option to `adb sync`
Change-Id: I87c01663dff319dde24b70560e6fe5647ebf9d49
Diffstat (limited to 'adb/commandline.c')
-rw-r--r--adb/commandline.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/adb/commandline.c b/adb/commandline.c
index 8781081..3ee54c7 100644
--- a/adb/commandline.c
+++ b/adb/commandline.c
@@ -112,6 +112,7 @@ void help()
" adb push <local> <remote> - copy file/dir to device\n"
" adb pull <remote> [<local>] - copy file/dir from device\n"
" adb sync [ <directory> ] - copy host->device only if changed\n"
+ " (-l means list but don't copy)\n"
" (see 'adb help all')\n"
" adb shell - run remote shell interactively\n"
" adb shell <command> - run remote shell command\n"
@@ -1041,10 +1042,19 @@ top:
if(!strcmp(argv[0], "sync")) {
char *srcarg, *android_srcpath, *data_srcpath;
+ int listonly = 0;
+
int ret;
if(argc < 2) {
/* No local path was specified. */
srcarg = NULL;
+ } else if (argc >= 2 && strcmp(argv[1], "-l") == 0) {
+ listonly = 1;
+ if (argc == 3) {
+ srcarg = argv[2];
+ } else {
+ srcarg = NULL;
+ }
} else if(argc == 2) {
/* A local path or "android"/"data" arg was specified. */
srcarg = argv[1];
@@ -1055,9 +1065,9 @@ top:
if(ret != 0) return usage();
if(android_srcpath != NULL)
- ret = do_sync_sync(android_srcpath, "/system");
+ ret = do_sync_sync(android_srcpath, "/system", listonly);
if(ret == 0 && data_srcpath != NULL)
- ret = do_sync_sync(data_srcpath, "/data");
+ ret = do_sync_sync(data_srcpath, "/data", listonly);
free(android_srcpath);
free(data_srcpath);