summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2009-10-07 15:38:53 -0700
committerElliott Hughes <enh@google.com>2009-10-07 15:38:53 -0700
commit31dbed7b60d8237d6d05dc6bf230167a5854b77a (patch)
treebae34d06d0f9e540a1e5adc2fcfd1ff5fc04f1e6 /fastboot
parentb4add9b74525210478bac702d27fdaf9cf7ab18f (diff)
downloadsystem_core-31dbed7b60d8237d6d05dc6bf230167a5854b77a.zip
system_core-31dbed7b60d8237d6d05dc6bf230167a5854b77a.tar.gz
system_core-31dbed7b60d8237d6d05dc6bf230167a5854b77a.tar.bz2
Add adb's ANDROID_SERIAL to fastboot too.
We noticed this when trying to script on-device testing for the dalvik continuous build. Also fix a typo in adb's help.
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/fastboot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c
index 8e92017..911c3f6 100644
--- a/fastboot/fastboot.c
+++ b/fastboot/fastboot.c
@@ -557,6 +557,8 @@ int main(int argc, char **argv)
return 0;
}
+ serial = getenv("ANDROID_SERIAL");
+
while (argc > 0) {
if(!strcmp(*argv, "-w")) {
wants_wipe = 1;