diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-19 12:17:04 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-19 12:17:04 +0000 |
commit | d2373d244f3a0ee01753dfde7fc28448c28e3d97 (patch) | |
tree | 942e40798bd90a4de7e432b97254ffa47ce7d647 | |
parent | dd9c612ca3233e2f1fc64b637f531bdabc4df1cc (diff) | |
download | busybox-w32-d2373d244f3a0ee01753dfde7fc28448c28e3d97.tar.gz busybox-w32-d2373d244f3a0ee01753dfde7fc28448c28e3d97.tar.bz2 busybox-w32-d2373d244f3a0ee01753dfde7fc28448c28e3d97.zip |
Add missing ELFCLASSM for m68k
git-svn-id: svn://busybox.net/trunk/busybox@8647 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | modutils/insmod.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index da475c968..455b1c10c 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -159,6 +159,7 @@ extern int insmod_ng_main( int argc, char **argv); | |||
159 | #define MATCH_MACHINE(x) (x == EM_68K) | 159 | #define MATCH_MACHINE(x) (x == EM_68K) |
160 | #define SHT_RELM SHT_RELA | 160 | #define SHT_RELM SHT_RELA |
161 | #define Elf32_RelM Elf32_Rela | 161 | #define Elf32_RelM Elf32_Rela |
162 | #define ELFCLASSM ELFCLASS32 | ||
162 | #endif | 163 | #endif |
163 | 164 | ||
164 | #if defined(__mips__) | 165 | #if defined(__mips__) |
@@ -281,7 +282,7 @@ extern int insmod_ng_main( int argc, char **argv); | |||
281 | #ifndef MODUTILS_MODULE_H | 282 | #ifndef MODUTILS_MODULE_H |
282 | static const int MODUTILS_MODULE_H = 1; | 283 | static const int MODUTILS_MODULE_H = 1; |
283 | 284 | ||
284 | #ident "$Id: insmod.c,v 1.114 2004/03/19 12:16:18 andersen Exp $" | 285 | #ident "$Id: insmod.c,v 1.115 2004/03/19 12:17:04 andersen Exp $" |
285 | 286 | ||
286 | /* This file contains the structures used by the 2.0 and 2.1 kernels. | 287 | /* This file contains the structures used by the 2.0 and 2.1 kernels. |
287 | We do not use the kernel headers directly because we do not wish | 288 | We do not use the kernel headers directly because we do not wish |
@@ -502,7 +503,7 @@ int delete_module(const char *); | |||
502 | #ifndef MODUTILS_OBJ_H | 503 | #ifndef MODUTILS_OBJ_H |
503 | static const int MODUTILS_OBJ_H = 1; | 504 | static const int MODUTILS_OBJ_H = 1; |
504 | 505 | ||
505 | #ident "$Id: insmod.c,v 1.114 2004/03/19 12:16:18 andersen Exp $" | 506 | #ident "$Id: insmod.c,v 1.115 2004/03/19 12:17:04 andersen Exp $" |
506 | 507 | ||
507 | /* The relocatable object is manipulated using elfin types. */ | 508 | /* The relocatable object is manipulated using elfin types. */ |
508 | 509 | ||