diff options
author | Joel Kitching <kitching@google.com> | 2019-10-04 17:46:29 +0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2019-10-23 16:28:14 +0000 |
commit | 3c477458fa7f1506e722ede38636eaced8810687 (patch) | |
tree | 6af8c80467619faa021405a72ab8c6e5eb12b55b /scripts | |
parent | ffa02e80c8cec862106607ffd0333258bb1ed62e (diff) | |
download | vboot-3c477458fa7f1506e722ede38636eaced8810687.tar.gz |
vboot: format hex numbers with %#x instead of 0x%x
Also standardize on using hex for printing ASCII key values
across vboot_ui.c and vboot_ui_menu.c.
BUG=b:124141368
TEST=make clean && make runtests
BRANCH=none
Change-Id: Ib10288d95e29c248ebe807d99108aea75775b155
Signed-off-by: Joel Kitching <kitching@google.com>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/1840191
Reviewed-by: Joel Kitching <kitching@chromium.org>
Tested-by: Joel Kitching <kitching@chromium.org>
Commit-Queue: Joel Kitching <kitching@chromium.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/image_signing/set_gbb_flags.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/image_signing/set_gbb_flags.sh b/scripts/image_signing/set_gbb_flags.sh index 11da707c..a313ec4b 100755 --- a/scripts/image_signing/set_gbb_flags.sh +++ b/scripts/image_signing/set_gbb_flags.sh @@ -57,7 +57,7 @@ main() { # Keep 'local' declaration split from assignment so return code is checked. local old_value old_value="$(futility gbb -g --flags "${image_file}")" - printf "Setting GBB flags from %s to 0x%x.." "${old_value}" "${value}" + printf "Setting GBB flags from %s to %#x.." "${old_value}" "${value}" futility gbb -s --flags="${value}" "${image_file}" if [ -z "${FLAGS_file}" ]; then |