If I try atrace tool from adb shell in emulator:
# atrace
atrace
error opening /sys/kernel/debug/tracing/options/overwrite: No such file or direc
tory (2)
If I do :
#mount -t debugfs nodev /sys/kernel/debug
#mount: No such file or directory
If I try to make the folder :
#mkdir -p /sys/kernel/debug
#mkdir failed for /sys/kernel/debug/, No such file or directory
So apparently I don't have write access even if I'm root....
Edit:
I can create folder in /data/ path but no in /sys/ path...
Has anybody be able to create folder in /sys/ path in emulator environment?
Any help ?
Thanks !
atraceseems to be intended for device manufacturers, linux kernel developers, ... but not app developer. So atrace support is not enabled in the emulator. You would need to recompile the platform and specifically the kernel. The kernel can be compiled with different configurations and you need to enable some debug options. lwn.net/Articles/365835 is very similar – zapl Nov 28 '12 at 10:23