From 1f5f4c853efac5d842147ca0373cf9b5dd9f0ad0 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Tue, 17 Jun 2014 18:13:07 -0700 Subject: [PATCH] cbfstool: Fix help display message For arm64, the machine type is arm64 in cbfstool, however it was displayed as aarch64 in help message. This patch corrects it. BUG=None BRANCH=None TEST=None Change-Id: I0319907d6c9d136707ed35d6e9686ba67da7dfb2 Signed-off-by: Furquan Shaikh Reviewed-on: https://chromium-review.googlesource.com/204379 Reviewed-by: Aaron Durbin Tested-by: Furquan Shaikh --- util/cbfstool/cbfstool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cbfstool/cbfstool.c b/util/cbfstool/cbfstool.c index 72799a4da8..cecc0b92ed 100644 --- a/util/cbfstool/cbfstool.c +++ b/util/cbfstool/cbfstool.c @@ -519,7 +519,7 @@ static void usage(char *name) "Updates the FIT table with microcode entries\n" "\n" "ARCHes:\n" - " aarch64, arm, x86\n" + " arm64, arm, x86\n" "TYPEs:\n", name, name ); print_supported_filetypes();