From: Peter Kjellerstedt Date: Wed, 30 Mar 2005 16:36:40 +0000 (-0000) Subject: Corrected the list of section names in add_ksymoops_symbols() so X-Git-Tag: 1_1_0~1087 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=540769d5663f52f5d9e04b85dd540deb5621946d;p=oweals%2Fbusybox.git Corrected the list of section names in add_ksymoops_symbols() so that the bss and sbss sections can be correctly identified. --- diff --git a/modutils/insmod.c b/modutils/insmod.c index c0f60fdb5..dfb8a765e 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -3453,8 +3453,8 @@ add_ksymoops_symbols(struct obj_file *f, const char *filename, ".text", ".rodata", ".data", - ".bss" - ".sbss" + ".bss", + ".sbss" }; if (realpath(filename, real)) {