From: Yuntao Wang Date: Sun, 22 May 2022 14:12:40 +0000 (+0800) Subject: scripts/kallsyms: update usage message of the kallsyms program X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8d3a75078c83a26d2e637da4e8f95058a406f5e7;p=linux.git scripts/kallsyms: update usage message of the kallsyms program The kallsyms program supports --absolute-percpu option but does not display it in the usage message, fix it. Signed-off-by: Yuntao Wang Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index e6906f79833dc..f18e6dfc68c58 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c @@ -70,7 +70,7 @@ static unsigned char best_table_len[256]; static void usage(void) { - fprintf(stderr, "Usage: kallsyms [--all-symbols] " + fprintf(stderr, "Usage: kallsyms [--all-symbols] [--absolute-percpu] " "[--base-relative] < in.map > out.S\n"); exit(1); }