Sergii Dmytruk has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/82610?usp=email )
Change subject: util/smmstoretool: fix uint{16,32} not being listed by help ......................................................................
util/smmstoretool: fix uint{16,32} not being listed by help
These data types were added during review of CB:79080 but they weren't added to the help message.
Change-Id: I6e79d65c80c292c3f5d2a2611e602db5cc6cf374 Signed-off-by: Sergii Dmytruk sergii.dmytruk@3mdeb.com --- M util/smmstoretool/main.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/10/82610/1
diff --git a/util/smmstoretool/main.c b/util/smmstoretool/main.c index 4857b62..f5228d6 100644 --- a/util/smmstoretool/main.c +++ b/util/smmstoretool/main.c @@ -123,6 +123,8 @@ fprintf(f, "Types and their values:\n"); fprintf(f, " * bool (true, false)\n"); fprintf(f, " * uint8 (0-255)\n"); + fprintf(f, " * uint16 (0-65535)\n"); + fprintf(f, " * uint32 (0-4294967295)\n"); fprintf(f, " * ascii (NUL-terminated)\n"); fprintf(f, " * unicode (widened and NUL-terminated)\n"); fprintf(f, " * raw (output only; raw bytes on output)\n");