summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-09-09 06:05:02 +0000
committerMike Frysinger <vapier@gentoo.org>2006-09-09 06:05:02 +0000
commit52377852456568b078372cdf5b1b6c7128929696 (patch)
tree6613241b5a44c85f2dd6c2516bc0d4a6562aeee2
parentfix DESCRIPTION (diff)
downloadgentoo-2-52377852456568b078372cdf5b1b6c7128929696.tar.gz
gentoo-2-52377852456568b078372cdf5b1b6c7128929696.tar.bz2
gentoo-2-52377852456568b078372cdf5b1b6c7128929696.zip
old
-rw-r--r--sys-apps/busybox/files/1.1.0/bb.patch6
-rw-r--r--sys-apps/busybox/files/1.1.0/glibc.patch21
-rw-r--r--sys-apps/busybox/files/1.1.0/ppc64-insmod.patch16
-rw-r--r--sys-apps/busybox/files/1.1.1/insmod.patch27
4 files changed, 0 insertions, 70 deletions
diff --git a/sys-apps/busybox/files/1.1.0/bb.patch b/sys-apps/busybox/files/1.1.0/bb.patch
deleted file mode 100644
index fc90b00c8793..000000000000
--- a/sys-apps/busybox/files/1.1.0/bb.patch
+++ /dev/null
@@ -1,6 +0,0 @@
---- include/applets.h
-+++ include/applets.h
-@@ -78,2 +78,3 @@
- #endif
-+ APPLET_NOUSAGE("bb", ash_main, _BB_DIR_BIN, _BB_SUID_NEVER)
- #ifdef CONFIG_BBCONFIG
diff --git a/sys-apps/busybox/files/1.1.0/glibc.patch b/sys-apps/busybox/files/1.1.0/glibc.patch
deleted file mode 100644
index 9025265a65d2..000000000000
--- a/sys-apps/busybox/files/1.1.0/glibc.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: networking/ping6.c
-===================================================================
---- networking/ping6.c (revision 14514)
-+++ networking/ping6.c (working copy)
-@@ -236,6 +236,16 @@
- }
- }
-
-+/* libc defines have changed around on us, whee ! */
-+#ifndef ICMP6_MEMBERSHIP_QUERY
-+# define ICMP6_MEMBERSHIP_QUERY MLD_LISTENER_QUERY
-+#endif
-+#ifndef ICMP6_MEMBERSHIP_REPORT
-+# define ICMP6_MEMBERSHIP_REPORT MLD_LISTENER_REPORT
-+#endif
-+#ifndef ICMP6_MEMBERSHIP_REDUCTION
-+# define ICMP6_MEMBERSHIP_REDUCTION MLD_LISTENER_REDUCTION
-+#endif
- static char *icmp6_type_name (int id)
- {
- switch (id) {
diff --git a/sys-apps/busybox/files/1.1.0/ppc64-insmod.patch b/sys-apps/busybox/files/1.1.0/ppc64-insmod.patch
deleted file mode 100644
index cda3ac61f535..000000000000
--- a/sys-apps/busybox/files/1.1.0/ppc64-insmod.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-http://bugs.gentoo.org/122992
-
-Index: modutils/insmod.c
-===================================================================
---- modutils/insmod.c (revision 14108)
-+++ modutils/insmod.c (revision 14109)
-@@ -1297,6 +1297,9 @@
- }
- break;
-
-+#elif defined(__powerpc64__)
-+ /* do this someday ... */
-+
- #elif defined(__powerpc__)
-
- case R_PPC_ADDR16_HA:
diff --git a/sys-apps/busybox/files/1.1.1/insmod.patch b/sys-apps/busybox/files/1.1.1/insmod.patch
deleted file mode 100644
index f3078d7853dc..000000000000
--- a/sys-apps/busybox/files/1.1.1/insmod.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Index: modutils/insmod.c
-===================================================================
---- modutils/insmod.c (revision 14652)
-+++ modutils/insmod.c (revision 14653)
-@@ -516,12 +516,6 @@ int delete_module(const char *);
- #include <elf.h>
- #include <endian.h>
-
--#if BB_LITTLE_ENDIAN
--# define ELFDATAM ELFDATA2LSB
--#else
--# define ELFDATAM ELFDATA2MSB
--#endif
--
- #ifndef ElfW
- # if ELFCLASSM == ELFCLASS32
- # define ElfW(x) Elf32_ ## x
-@@ -3331,7 +3325,8 @@ static struct obj_file *obj_load(FILE *
- return NULL;
- }
- if (f->header.e_ident[EI_CLASS] != ELFCLASSM
-- || f->header.e_ident[EI_DATA] != ELFDATAM
-+ || f->header.e_ident[EI_DATA] != (BB_BIG_ENDIAN
-+ ? ELFDATA2MSB : ELFDATA2LSB)
- || f->header.e_ident[EI_VERSION] != EV_CURRENT
- || !MATCH_MACHINE(f->header.e_machine)) {
- bb_error_msg("ELF file not for this architecture");