summaryrefslogtreecommitdiff
path: root/util/genvif.c
diff options
context:
space:
mode:
authorAbe Levkoy <alevkoy@chromium.org>2020-11-02 13:50:49 -0700
committerCommit Bot <commit-bot@chromium.org>2020-11-03 02:02:44 +0000
commit5884a3b37e47b3b9a926963330b5f34e5cde3445 (patch)
treef1c9508d10c8c0d2c96d3261856daea34a2e1795 /util/genvif.c
parent2436c92f829fef3bd620e624ef250b009fce452a (diff)
downloadchrome-ec-5884a3b37e47b3b9a926963330b5f34e5cde3445.tar.gz
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 <alevkoy@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2514902 Reviewed-by: Denis Brockus <dbrockus@chromium.org>
Diffstat (limited to 'util/genvif.c')
-rw-r--r--util/genvif.c2
1 files changed, 1 insertions, 1 deletions
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;