summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-27 16:12:59 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-27 16:12:59 +0000
commitc9e0ccf07c715d71b9b8c845d6e7e033678c5557 (patch)
tree485e6a0b0929d17808b879fb639626c07fd463fc /target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch
parentc8e24ec13e92ee8eb93797907fe362347bdde609 (diff)
[lantiq] 3.2 R.I.P.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31911 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch')
-rw-r--r--target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch b/target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch
deleted file mode 100644
index 43236cef7..000000000
--- a/target/linux/lantiq/patches-3.2/0012-MIPS-lantiq-fix-cmdline-parsing.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 9c1b1cde50b09dd3679d74cde07694cee32c8b19 Mon Sep 17 00:00:00 2001
-From: John Crispin <blogic@openwrt.org>
-Date: Fri, 12 Aug 2011 16:27:38 +0200
-Subject: [PATCH 12/73] MIPS: lantiq: fix cmdline parsing
-
-The code tested if the KSEG1 mapped address of argv was != 0. We need to use
-CPHYSADDR instead to make the conditional actually work.
-
-Signed-off-by: Thomas Langer <thomas.langer@lantiq.com>
-Signed-off-by: John Crispin <blogic@openwrt.org>
----
- arch/mips/lantiq/prom.c | 6 ++++--
- 1 files changed, 4 insertions(+), 2 deletions(-)
-
---- a/arch/mips/lantiq/prom.c
-+++ b/arch/mips/lantiq/prom.c
-@@ -49,10 +49,12 @@ static void __init prom_init_cmdline(voi
- char **argv = (char **) KSEG1ADDR(fw_arg1);
- int i;
-
-+ arcs_cmdline[0] = '\0';
-+
- for (i = 0; i < argc; i++) {
-- char *p = (char *) KSEG1ADDR(argv[i]);
-+ char *p = (char *) KSEG1ADDR(argv[i]);
-
-- if (p && *p) {
-+ if (CPHYSADDR(p) && *p) {
- strlcat(arcs_cmdline, p, sizeof(arcs_cmdline));
- strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline));
- }