diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-07-23 06:01:50 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-07-23 06:01:50 +0000 |
commit | 10d8ac5ed0ff4f83581789c0bad62ac1f10e7602 (patch) | |
tree | 7aed491fc04d53461b4089b01283cc56832a6ed7 | |
parent | 8bba7f0d67d686836258d7ee48bd7fe582efa4e1 (diff) | |
download | buildroot-novena-10d8ac5ed0ff4f83581789c0bad62ac1f10e7602.tar.gz buildroot-novena-10d8ac5ed0ff4f83581789c0bad62ac1f10e7602.zip |
busybox: additional 1.11.1 fix
-rw-r--r-- | package/busybox/busybox-1.11.1-modutils.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.11.1-modutils.patch b/package/busybox/busybox-1.11.1-modutils.patch new file mode 100644 index 000000000..f1697667a --- /dev/null +++ b/package/busybox/busybox-1.11.1-modutils.patch @@ -0,0 +1,12 @@ +--- busybox-1.11.1/modutils/insmod.c Wed Jun 25 14:51:18 2008 ++++ busybox-1.11.1-modutils/modutils/insmod.c Wed Jul 23 00:46:08 2008 +@@ -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__) || defined(__mips__) + struct arch_file *ifile = (struct arch_file *) f; + #endif + enum obj_reloc ret = obj_reloc_ok; |