The commit introducing help text for the individual options, inadvertently modified the usage string. Revert that single line. Fixes: 94a2b2b28738 ("rsatoc: support generating standalone keys unreferenced by FIT keyring") Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- scripts/rsatoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rsatoc.c b/scripts/rsatoc.c index 6d10dca4169c..d5943d4a1154 100644 --- a/scripts/rsatoc.c +++ b/scripts/rsatoc.c @@ -509,7 +509,7 @@ int main(int argc, char *argv[]) } if (optind == argc) { - fprintf(stderr, "Usage: %s [-ods] OUTFIE<key_name_hint>:<crt> ...\n", argv[0]); + fprintf(stderr, "Usage: %s [-ods] <key_name_hint>:<crt> ...\n", argv[0]); fprintf(stderr, "\t-o FILE\twrite output into FILE instead of stdout\n"); fprintf(stderr, "\t-d\tgenerate device tree snippet instead of C code\n"); fprintf(stderr, "\t-s\tgenerate standalone key outside FIT image keyring\n"); -- 2.39.2