From 5884a3b37e47b3b9a926963330b5f34e5cde3445 Mon Sep 17 00:00:00 2001 From: Abe Levkoy Date: Mon, 2 Nov 2020 13:50:49 -0700 Subject: genvif: Output to .xml path The currently generated format is XML. The GRL C2 software requires the the filename end in .xml to successfully use it. Output to a file with this name. BUG=b:170646602 TEST=make buildall BRANCH=none Change-Id: I54dbfaef1bc76be58a0007039da659562f97e372 Signed-off-by: Abe Levkoy Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2514902 Reviewed-by: Denis Brockus --- util/genvif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/genvif.c') diff --git a/util/genvif.c b/util/genvif.c index cfcaa07606..edd70dc3fb 100644 --- a/util/genvif.c +++ b/util/genvif.c @@ -1772,7 +1772,7 @@ int main(int argc, char **argv) init_src_pdos(); - name_size = asprintf(&name, "%s/%s_vif.txt", out, board); + name_size = asprintf(&name, "%s/%s_vif.xml", out, board); if (name_size < 0) { fprintf(stderr, "ERROR: Out of memory.\n"); return 1; -- cgit v1.2.1