diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-13 18:57:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-13 18:57:08 +0000 |
commit | c3b2dbec8c3249716f0027fcc423bde37517cbe6 (patch) | |
tree | 7b9e143698b75a26360a1611bc9a21462a0f3da3 | |
parent | 92b7e7baa11a4dd7edd02b358857745a75bcfaad (diff) | |
download | busybox-w32-c3b2dbec8c3249716f0027fcc423bde37517cbe6.tar.gz busybox-w32-c3b2dbec8c3249716f0027fcc423bde37517cbe6.tar.bz2 busybox-w32-c3b2dbec8c3249716f0027fcc423bde37517cbe6.zip |
Fix obviously wrong names from older busybox
-rw-r--r-- | modutils/insmod.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 5faae5251..56e78e833 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -103,11 +103,11 @@ | |||
103 | #endif | 103 | #endif |
104 | 104 | ||
105 | #if defined(__s390__) | 105 | #if defined(__s390__) |
106 | #define BB_USE_PLT_ENTRIES | 106 | #define CONFIG_USE_PLT_ENTRIES |
107 | #define BB_PLT_ENTRY_SIZE 8 | 107 | #define CONFIG_PLT_ENTRY_SIZE 8 |
108 | #define BB_USE_GOT_ENTRIES | 108 | #define CONFIG_USE_GOT_ENTRIES |
109 | #define BB_GOT_ENTRY_SIZE 8 | 109 | #define CONFIG_GOT_ENTRY_SIZE 8 |
110 | #define BB_USE_SINGLE | 110 | #define CONFIG_USE_SINGLE |
111 | 111 | ||
112 | #define MATCH_MACHINE(x) (x == EM_S390) | 112 | #define MATCH_MACHINE(x) (x == EM_S390) |
113 | #define SHT_RELM SHT_RELA | 113 | #define SHT_RELM SHT_RELA |
@@ -247,7 +247,7 @@ | |||
247 | #ifndef MODUTILS_MODULE_H | 247 | #ifndef MODUTILS_MODULE_H |
248 | static const int MODUTILS_MODULE_H = 1; | 248 | static const int MODUTILS_MODULE_H = 1; |
249 | 249 | ||
250 | #ident "$Id: insmod.c,v 1.95 2003/01/23 06:02:39 andersen Exp $" | 250 | #ident "$Id: insmod.c,v 1.96 2003/03/13 18:57:08 andersen Exp $" |
251 | 251 | ||
252 | /* This file contains the structures used by the 2.0 and 2.1 kernels. | 252 | /* This file contains the structures used by the 2.0 and 2.1 kernels. |
253 | We do not use the kernel headers directly because we do not wish | 253 | We do not use the kernel headers directly because we do not wish |
@@ -468,7 +468,7 @@ int delete_module(const char *); | |||
468 | #ifndef MODUTILS_OBJ_H | 468 | #ifndef MODUTILS_OBJ_H |
469 | static const int MODUTILS_OBJ_H = 1; | 469 | static const int MODUTILS_OBJ_H = 1; |
470 | 470 | ||
471 | #ident "$Id: insmod.c,v 1.95 2003/01/23 06:02:39 andersen Exp $" | 471 | #ident "$Id: insmod.c,v 1.96 2003/03/13 18:57:08 andersen Exp $" |
472 | 472 | ||
473 | /* The relocatable object is manipulated using elfin types. */ | 473 | /* The relocatable object is manipulated using elfin types. */ |
474 | 474 | ||