diff options
author | Iru Cai <mytbk920423@gmail.com> | 2018-01-25 21:44:09 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-04-19 16:30:23 +0000 |
commit | 2e8f4ccfe636fcb0ccd62aee503aa2320c83b6ea (patch) | |
tree | 69269ce6522780b62393167ac2630f7f8341526b /util/autoport | |
parent | 51895d183861234db9500bd1ee33634776e91e93 (diff) |
ectool: Add an option to get and use EC ports from /proc/ioports
There are boards that don't use ports 0x62 and 0x66 for EC, e.g. Dell
Latitude E6230 uses 0x930 and 0x934.
Change-Id: Ie3005f5cd6e37206ef187267b0542efdeb26b3af
Signed-off-by: Iru Cai <mytbk920423@gmail.com>
Reviewed-on: https://review.coreboot.org/23430
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.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 a62f8f6ea8..08b35d2195 100644 --- a/util/autoport/log_maker.go +++ b/util/autoport/log_maker.go @@ -94,7 +94,7 @@ func MakeLogs(outDir string) { } RunAndSave(outDir+"/inteltool.log", "../inteltool/inteltool", inteltoolArgs) - RunAndSave(outDir+"/ectool.log", "../ectool/ectool", "-d") + RunAndSave(outDir+"/ectool.log", "../ectool/ectool", "-pd") RunAndSave(outDir+"/superiotool.log", "../superiotool/superiotool", "-ade") SysDir := "/sys/class/sound/card0/" |