I'm trying to get systrace to provide disk output.
I've rooted my device and I'm able to switch to superuser in adb shell just fine.
python systrace.py -d -o ~/systrace1.html
produces
'error: tracing disk activity requires root privileges'
If I try to restart adb with root privileges by running
adb root
I get
'adbd cannot run as root in production builds'
It may be that I'm just not understanding what's meant by "production builds". Any insight would be appreciated.
The adb sources do this:
In other words, if it doesn't see
ro.debuggable
set to 1 it won't let you runadb root
. Check the contents of your/default.prop
.