diff options
| author | 2018-06-29 16:27:02 -0700 | |
|---|---|---|
| committer | 2018-06-29 16:27:02 -0700 | |
| commit | 70fbf026f28ebf4c6b0c80b14f207a960536fc4c (patch) | |
| tree | ffe2364f5b20917e139dbe78a9d99c0807408ed4 | |
| parent | 8544224e1d2b685f9b63e3d5565720d1b9b5d7c5 (diff) | |
| parent | d81eb0f2f2f7e76e79f57c10b8fcfcee4d5b1d8f (diff) | |
Merge "dumpstate: specify default args for lshal" into stage-aosp-master
am: d81eb0f2f2
Change-Id: I7df2e731acadbff677d14008fe6aaa7fb5e722ca
| -rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp index 7dbc9a4baa..e85274a1ef 100644 --- a/cmds/dumpstate/dumpstate.cpp +++ b/cmds/dumpstate/dumpstate.cpp @@ -1239,10 +1239,12 @@ static void dumpstate() { RunCommand("LIBRANK", {"librank"}, CommandOptions::AS_ROOT); if (ds.IsZipping()) { - RunCommand("HARDWARE HALS", {"lshal"}, CommandOptions::WithTimeout(2).AsRootIfAvailable().Build()); + RunCommand("HARDWARE HALS", {"lshal", "-lVSietrpc", "--types=b,c,l,z"}, + CommandOptions::WithTimeout(2).AsRootIfAvailable().Build()); DumpHals(); } else { - RunCommand("HARDWARE HALS", {"lshal", "--debug"}, CommandOptions::WithTimeout(10).AsRootIfAvailable().Build()); + RunCommand("HARDWARE HALS", {"lshal", "-lVSietrpc", "--types=b,c,l,z", "--debug"}, + CommandOptions::WithTimeout(10).AsRootIfAvailable().Build()); } RunCommand("PRINTENV", {"printenv"}); |