[BusyBox-cvs] svn commit: trunk/busybox/modutils
pkj at busybox.net
pkj at busybox.net
Wed Mar 30 16:36:41 UTC 2005
Author: pkj
Date: 2005-03-30 09:36:40 -0700 (Wed, 30 Mar 2005)
New Revision: 10062
Log:
Corrected the list of section names in add_ksymoops_symbols() so
that the bss and sbss sections can be correctly identified.
Modified:
trunk/busybox/modutils/insmod.c
Changeset:
Modified: trunk/busybox/modutils/insmod.c
===================================================================
--- trunk/busybox/modutils/insmod.c 2005-03-30 06:29:41 UTC (rev 10061)
+++ trunk/busybox/modutils/insmod.c 2005-03-30 16:36:40 UTC (rev 10062)
@@ -3453,8 +3453,8 @@
".text",
".rodata",
".data",
- ".bss"
- ".sbss"
+ ".bss",
+ ".sbss"
};
if (realpath(filename, real)) {
More information about the busybox-cvs
mailing list