diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-11-27 04:18:00 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-02-14 09:04:41 -0500 |
commit | 8c0c774dd7b4aa0e0b69f483a70c7f41995139ef (patch) | |
tree | ee2e4e9db7f4cd5b65c3844c038baef926f0e75a /scripts | |
parent | b2dc0c2b7a84864fdbad2e264ce9b5c7068a0a0f (diff) |
scripts/sortextable: silence script output
The exception table sorter outputs one line every time
it gets called, e.g. 'sort done marker at 66dc00', which
is slightly annoying when doing 'make -s' which is otherwise
completely silent. Since that output is not helpful to
most people building the kernel, turn it off by default.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: David Daney <david.daney@cavium.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/sortextable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/sortextable.h b/scripts/sortextable.h index e4fd45b7e456..f5eb43d42926 100644 --- a/scripts/sortextable.h +++ b/scripts/sortextable.h | |||
@@ -182,7 +182,7 @@ do_func(Elf_Ehdr *ehdr, char const *const fname, table_sort_t custom_sort) | |||
182 | _r(&sort_needed_sym->st_value) - | 182 | _r(&sort_needed_sym->st_value) - |
183 | _r(&sort_needed_sec->sh_addr); | 183 | _r(&sort_needed_sec->sh_addr); |
184 | 184 | ||
185 | #if 1 | 185 | #if 0 |
186 | printf("sort done marker at %lx\n", | 186 | printf("sort done marker at %lx\n", |
187 | (unsigned long)((char *)sort_done_location - (char *)ehdr)); | 187 | (unsigned long)((char *)sort_done_location - (char *)ehdr)); |
188 | #endif | 188 | #endif |