[coreboot-gerrit] New patch to review for coreboot: util/autoport: Fix gfx dump of log_maker

Swift Geek (swiftgeek@gmail.com) gerrit at coreboot.org
Sun Jan 8 04:04:31 CET 2017


Swift Geek (swiftgeek at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18050

-gerrit

commit 45c8d1f9c313422620fb1d10f7b37296bce655c6
Author: Sebastian 'Swift Geek' Grzywna <swiftgeek at 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 string seems to be parsed as single argument.
    
    Change-Id: I0c48fb1e912261748ba9e2b91c291bac28b9e856
---
 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)



More information about the coreboot-gerrit mailing list