summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
authorLadislav Michl <ladis@linux-mips.org>2007-01-15 15:08:31 +0000
committerLadislav Michl <ladis@linux-mips.org>2007-01-15 15:08:31 +0000
commit088e5ae82615e2b44797249b424ce5cbdfa844c5 (patch)
treeb440684a1791bcc4dc0ca054010c837057f18452 /patches
parent310b95b80c93b2aa048330ca51686cb77cd14d7e (diff)
downloadptxdist-088e5ae82615e2b44797249b424ce5cbdfa844c5.tar.gz
ptxdist-088e5ae82615e2b44797249b424ce5cbdfa844c5.tar.xz
Remove patches for obsolete module-init-tools version.
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@6875 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'patches')
-rw-r--r--patches/module-init-tools-3.2.1/generic/module-init-tools-3.2-pre1-uclibc.diff44
-rw-r--r--patches/module-init-tools-3.2.1/generic/module-init-tools-oldtoolsname.diff38
2 files changed, 0 insertions, 82 deletions
diff --git a/patches/module-init-tools-3.2.1/generic/module-init-tools-3.2-pre1-uclibc.diff b/patches/module-init-tools-3.2.1/generic/module-init-tools-3.2-pre1-uclibc.diff
deleted file mode 100644
index 98e80a383..000000000
--- a/patches/module-init-tools-3.2.1/generic/module-init-tools-3.2-pre1-uclibc.diff
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Submitted-By: Robert Schwebel, 2005-05-08
-# Committed-By: Robert Schwebel
-#
-# Error:
-#
-# config.sub claims that this is no valid configuration.
-#
-# Description:
-#
-# config.sub claims that this is no valid configuration.
-#
-# State:
-#
-# unknown
-#
-
-diff -urN module-init-tools-3.2-pre1/config.sub module-init-tools-3.2-pre1-ptx/config.sub
---- module-init-tools-3.2-pre1/config.sub 2002-11-26 02:38:55.000000000 +0100
-+++ module-init-tools-3.2-pre1-ptx/config.sub 2005-05-08 13:34:24.000000000 +0200
-@@ -281,10 +281,10 @@
- basic_machine=$basic_machine-pc
- ;;
- # Object if more than one company name word.
-- *-*-*)
-- echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
-- exit 1
-- ;;
-+# *-*-*)
-+# echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
-+# exit 1
-+# ;;
- # Recognize the basic CPU types with company name.
- 580-* \
- | a29k-* \
-@@ -1099,7 +1099,7 @@
- # The portable systems comes first.
- # Each alternative MUST END IN A *, to match a version number.
- # -sysv* is not here because it comes later, after sysvr4.
-- -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
-+ -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* | -uclibc* \
- | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
- | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
- | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
diff --git a/patches/module-init-tools-3.2.1/generic/module-init-tools-oldtoolsname.diff b/patches/module-init-tools-3.2.1/generic/module-init-tools-oldtoolsname.diff
deleted file mode 100644
index 97bed4f01..000000000
--- a/patches/module-init-tools-3.2.1/generic/module-init-tools-oldtoolsname.diff
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Submitted-By: Marc Kleine-Budde, 2005-04-21
-#
-# Error:
-#
-# when using module-init-tools's depmod against 2.4 kernels, it will
-# try to call 'depmod.old', regardless it's own name.
-#
-# Description:
-#
-# e.g.: arm-softfloat-linux-gnu-depmod calls depmod.old
-# the target-tuple gets lost. This patch fixes that.
-# now arm-softfloat-linux-gnu-depmod will call
-# arm-softfloat-linux-gnu-depmod.old
-#
-diff -ru module-init-tools-3.2-pre1-orig/depmod.c module-init-tools-3.2-pre1/depmod.c
---- module-init-tools-3.2-pre1-orig/depmod.c 2005-01-18 06:54:59.000000000 +0100
-+++ module-init-tools-3.2-pre1/depmod.c 2005-04-21 12:51:29.000000000 +0200
-@@ -212,15 +212,10 @@
-
- static void exec_old_depmod(char *argv[])
- {
-- char *sep;
-- char pathname[strlen(argv[0])+1];
-- char oldname[strlen("depmod") + strlen(argv[0]) + sizeof(".old")];
--
-- memset(pathname, 0, strlen(argv[0])+1);
-- sep = strrchr(argv[0], '/');
-- if (sep)
-- memcpy(pathname, argv[0], sep - argv[0]+1);
-- sprintf(oldname, "%s%s.old", pathname, "depmod");
-+ char *old = ".old";
-+ char oldname[strlen(argv[0]) + strlen(old) + 1];
-+
-+ sprintf(oldname, "%s%s", argv[0], old);
-
- /* Recursion detection: we need an env var since we can't
- change argv[0] (as older modutils uses it to determine