diff options
author | Sergii Dmytruk <sergii.dmytruk@3mdeb.com> | 2024-05-22 20:31:46 +0300 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-06-14 14:18:58 +0000 |
commit | dd6c3b4a61b3f93c391cc460c50dca37cb32f7f0 (patch) | |
tree | 6472194785ecd09c9588d6416ed8a893d960adef | |
parent | d6c58b79e72dbea8f3221c592039c5fad569d93a (diff) |
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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82610
Reviewed-by: Krystian Hebel <krystian.hebel@3mdeb.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
-rw-r--r-- | util/smmstoretool/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/smmstoretool/main.c b/util/smmstoretool/main.c index 4857b624ba..f5228d69e1 100644 --- a/util/smmstoretool/main.c +++ b/util/smmstoretool/main.c @@ -123,6 +123,8 @@ static void print_types(FILE *f) 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"); |