diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2015-10-10 23:17:03 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2015-10-11 10:25:17 +0000 |
commit | 6286e3512a84cc1858aa3b67a85cfa03d292a763 (patch) | |
tree | 8b633b2d0279410d06b3c50642541f327c9e535e /util/autoport | |
parent | c48f5ef3cc623a4b1bccdbc9cb3e1d15505b7ad4 (diff) |
autoport: Fix ectool arguments.
Change-Id: I207fa981370d72c26e6fb1f07f3cd2d1f9d44d04
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/11855
Tested-by: build bot (Jenkins)
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'util/autoport')
-rw-r--r-- | util/autoport/log_maker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/autoport/log_maker.go b/util/autoport/log_maker.go index dbe5f808c9..bae24c8fa4 100644 --- a/util/autoport/log_maker.go +++ b/util/autoport/log_maker.go @@ -52,7 +52,7 @@ func MakeLogs(outDir string) { RunAndSave(outDir+"/acpidump.log", "acpidump") /* FIXME:XX */ RunAndSave(outDir+"/inteltool.log", "../inteltool/inteltool", "-a") - RunAndSave(outDir+"/ectool.log", "../ectool/ectool", "-a") + RunAndSave(outDir+"/ectool.log", "../ectool/ectool") SysDir := "/sys/class/sound/card0/" files, _ := ioutil.ReadDir(SysDir) |