From fa351ab265957fa8815df3c4ca1f3c105f253e8b Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Tue, 24 Jan 2012 09:20:19 -0800 Subject: Only do bugreport on user build with ADB enabled This makes it less likely that users that don't know what a bugreport is will trigger it, but leaves the possibility for developers to trigger a bugreport with a key combo. Bug: 5866877 Change-Id: Ifc3c5126ec9342880a3635845a89c5a4a40156d2 --- bugmailer/bugmailer.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bugmailer/bugmailer.sh b/bugmailer/bugmailer.sh index ba8eeb7b..93d1c8a4 100755 --- a/bugmailer/bugmailer.sh +++ b/bugmailer/bugmailer.sh @@ -1,5 +1,12 @@ #!/system/bin/sh +# Do not allow bugreports on user builds unless USB debugging +# is enabled. +if [ "x$(getprop ro.build.type)" = "xuser" -a \ + "x$(getprop init.svc.adbd)" != "xrunning" ]; then + exit 0 +fi + timestamp=`date +'%Y-%m-%d-%H-%M-%S'` storagePath="$EXTERNAL_STORAGE/bugreports" bugreport=$storagePath/bugreport-$timestamp -- cgit v1.2.3