svn commit: trunk/busybox/modutils

vda at busybox.net vda at busybox.net
Mon Jul 14 21:29:36 UTC 2008


Author: vda
Date: 2008-07-14 14:29:35 -0700 (Mon, 14 Jul 2008)
New Revision: 22830

Log:
insmod: users report that "|| defined(__powerpc__)" is missing



Modified:
   trunk/busybox/modutils/insmod.c


Changeset:
Modified: trunk/busybox/modutils/insmod.c
===================================================================
--- trunk/busybox/modutils/insmod.c	2008-07-14 14:30:48 UTC (rev 22829)
+++ trunk/busybox/modutils/insmod.c	2008-07-14 21:29:35 UTC (rev 22830)
@@ -840,7 +840,8 @@
 				ElfW(RelM) *rel, ElfW(Addr) v)
 {
 #if defined(__arm__) || defined(__i386__) || defined(__mc68000__) \
- || defined(__sh__) || defined(__s390__) || defined(__x86_64__)
+ || defined(__sh__) || defined(__s390__) || defined(__x86_64__) \
+ || defined(__powerpc__)
 	struct arch_file *ifile = (struct arch_file *) f;
 #endif
 	enum obj_reloc ret = obj_reloc_ok;




More information about the busybox-cvs mailing list