summaryrefslogtreecommitdiffstats
path: root/cmds/dumpstate/dumpstate.h
diff options
context:
space:
mode:
authorDmitry Shmidt <dimitrysh@google.com>2009-12-16 16:05:08 -0800
committerDmitry Shmidt <dimitrysh@google.com>2009-12-16 16:05:08 -0800
commit64bf3d53d5ce62a786b270d1dd86d8eae723fea5 (patch)
treefe9b0e9c6787bef527d484c7c74dbfcdc1409a7c /cmds/dumpstate/dumpstate.h
parent2786d21ddeeb2a46733fbac1afd6533b093d70ee (diff)
downloadframeworks_base-64bf3d53d5ce62a786b270d1dd86d8eae723fea5.zip
frameworks_base-64bf3d53d5ce62a786b270d1dd86d8eae723fea5.tar.gz
frameworks_base-64bf3d53d5ce62a786b270d1dd86d8eae723fea5.tar.bz2
Add FW log dump for bcm4329
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Diffstat (limited to 'cmds/dumpstate/dumpstate.h')
-rw-r--r--cmds/dumpstate/dumpstate.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/cmds/dumpstate/dumpstate.h b/cmds/dumpstate/dumpstate.h
index b99b6d7..ed1f005 100644
--- a/cmds/dumpstate/dumpstate.h
+++ b/cmds/dumpstate/dumpstate.h
@@ -124,6 +124,15 @@
run_command(&c, TIMEOUT); \
}
+#define EXEC_XBIN6(cmd, a1, a2, a3, a4, a5, a6) \
+{ \
+ static struct Command c = { \
+ "/system/xbin/" cmd, \
+ { cmd, a1, a2, a3, a4, a5, a6, 0 } \
+ }; \
+ run_command(&c, TIMEOUT); \
+}
+
#define PROPERTY(name) print_property(name)
struct Command {