diff options
author | pkj <pkj@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-03-30 16:36:40 +0000 |
---|---|---|
committer | pkj <pkj@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-03-30 16:36:40 +0000 |
commit | c83364abcaccada48daea3b295c5a0bc6f358a51 (patch) | |
tree | 85214b08ae0453120576f0e05d7f02d9eda79c72 | |
parent | d9b5e087a1d0c2b392b801567f0f1030c792649b (diff) | |
download | busybox-w32-c83364abcaccada48daea3b295c5a0bc6f358a51.tar.gz busybox-w32-c83364abcaccada48daea3b295c5a0bc6f358a51.tar.bz2 busybox-w32-c83364abcaccada48daea3b295c5a0bc6f358a51.zip |
Corrected the list of section names in add_ksymoops_symbols() so
that the bss and sbss sections can be correctly identified.
git-svn-id: svn://busybox.net/trunk/busybox@10062 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | modutils/insmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, | |||
3453 | ".text", | 3453 | ".text", |
3454 | ".rodata", | 3454 | ".rodata", |
3455 | ".data", | 3455 | ".data", |
3456 | ".bss" | 3456 | ".bss", |
3457 | ".sbss" | 3457 | ".sbss" |
3458 | }; | 3458 | }; |
3459 | 3459 | ||
3460 | if (realpath(filename, real)) { | 3460 | if (realpath(filename, real)) { |