Swift Geek (swiftgeek@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18050
-gerrit
commit 482a7cde7bf22e5b678be107240bf2375f59ce2a Author: Sebastian 'Swift Geek' Grzywna swiftgeek@gmail.com Date: Sun Jan 8 03:42:30 2017 +0100
util/autoport: Fix gfx dump of log_maker
Variable name of inteltoolArgs was fixed.
The way of passing arguments to inteltool was changed from "-a -f" to "-af" which is better as the string seems to be parsed as a single argument.
Change-Id: I0c48fb1e912261748ba9e2b91c291bac28b9e856 Signed-off-by: Sebastian 'Swift Geek' Grzywna swiftgeek@gmail.com --- util/autoport/log_maker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/autoport/log_maker.go b/util/autoport/log_maker.go index 50e0e65..7c8240e 100644 --- a/util/autoport/log_maker.go +++ b/util/autoport/log_maker.go @@ -89,7 +89,7 @@ func MakeLogs(outDir string) {
switch opt { case "y", "yes": - opt += " -f" + inteltoolArgs += "f" }
RunAndSave(outDir+"/inteltool.log", "../inteltool/inteltool", inteltoolArgs)