Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/37369 )
Change subject: util/pgtblgen: Fix typo ......................................................................
util/pgtblgen: Fix typo
Change-Id: I638eda3040c7225aa4a8b492c8dc78b0e2effba1 Signed-off-by: Patrick Rudolph siro@das-labor.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/37369 Reviewed-by: Patrick Georgi pgeorgi@google.com Reviewed-by: Angel Pons th3fanbus@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M util/pgtblgen/pgtblgen.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Angel Pons: Looks good to me, approved
diff --git a/util/pgtblgen/pgtblgen.c b/util/pgtblgen/pgtblgen.c index efbad55..e9ebd8b 100644 --- a/util/pgtblgen/pgtblgen.c +++ b/util/pgtblgen/pgtblgen.c @@ -28,7 +28,7 @@ printf("usage: %s -b <addr> -a <arch> -o <file>\n", argv[0]); printf(" -a\t architecure. Supported: x86_64\n"); printf(" -b\t base address\n"); - printf(" -b\t the file to write to\n"); + printf(" -o\t the file to write to\n"); printf(" -h\t show this help text\n"); }