summaryrefslogtreecommitdiff
path: root/host/lib/cbfstool.c
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2022-09-07 13:51:30 +0200
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-09-10 05:47:07 +0000
commit62cc7885eab5d5ab0a7d773fb5284b4ca9ee097c (patch)
tree19c6336af2e10bf164194f989ba9cf4040c0f31a /host/lib/cbfstool.c
parent3bd35108579db497b006b81e77794739b5118592 (diff)
downloadvboot-stabilize-15117.48.B.tar.gz
Utility programs in vboot sometimes use subprocess_run to execute another program like flashrom or cbfstool. This change makes it easier to debug these utilities by logging executed subprocess and its arguments. This change also fixes futility vb2ex_printf() implementation. Previously use of VB2_DEBUG_RAW() calling vb2ex_printf(NULL, ...) was unnecessarily trying to print NULL as function name, which was not intended behavior. TEST=sign image and look for "Run: cbfstool ..." BUG=none BRANCH=none Signed-off-by: Jakub Czapiga <czapiga@google.com> Change-Id: I613d4af4af4370425cbbedc2d7de29a488533c6a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/3878593 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-by: Yu-Ping Wu <yupingso@chromium.org>
Diffstat (limited to 'host/lib/cbfstool.c')
-rw-r--r--host/lib/cbfstool.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/host/lib/cbfstool.c b/host/lib/cbfstool.c
index 8f547066..9f09d136 100644
--- a/host/lib/cbfstool.c
+++ b/host/lib/cbfstool.c
@@ -43,8 +43,6 @@ vb2_error_t cbfstool_truncate(const char *file, const char *region,
cbfstool, file, "truncate", "-r", region, NULL,
};
- VB2_DEBUG("Calling: %s '%s' truncate -r '%s'\n", cbfstool, file,
- region);
status = subprocess_run(argv, &subprocess_null, &output,
&subprocess_null);