diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-12-20 19:25:43 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-12-20 19:25:43 +0000 |
commit | 04ce7e213f6232d0a3ec76f5c9f5cc8a994b3c81 (patch) | |
tree | ebc300e5f6246e6a2eb1e2003c5f894fad3015d7 /target/linux/rb532/patches-3.7/001-cmdline_hack.patch | |
parent | e1b5eeeaa4eea9c75ef0e761a01b6c1e6d1560c5 (diff) | |
download | upstream-04ce7e213f6232d0a3ec76f5c9f5cc8a994b3c81.tar.gz upstream-04ce7e213f6232d0a3ec76f5c9f5cc8a994b3c81.tar.bz2 upstream-04ce7e213f6232d0a3ec76f5c9f5cc8a994b3c81.zip |
rb532: add support for 3.7
Compile tested only.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 34812
Diffstat (limited to 'target/linux/rb532/patches-3.7/001-cmdline_hack.patch')
-rw-r--r-- | target/linux/rb532/patches-3.7/001-cmdline_hack.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/rb532/patches-3.7/001-cmdline_hack.patch b/target/linux/rb532/patches-3.7/001-cmdline_hack.patch new file mode 100644 index 0000000000..d27184d34c --- /dev/null +++ b/target/linux/rb532/patches-3.7/001-cmdline_hack.patch @@ -0,0 +1,20 @@ +--- a/arch/mips/rb532/prom.c ++++ b/arch/mips/rb532/prom.c +@@ -67,6 +67,7 @@ static inline unsigned long tag2ul(char + return simple_strtoul(num, 0, 10); + } + ++extern char __image_cmdline[]; + void __init prom_setup_cmdline(void) + { + static char cmd_line[COMMAND_LINE_SIZE] __initdata; +@@ -109,6 +110,9 @@ void __init prom_setup_cmdline(void) + } + *(cp++) = ' '; + ++ strcpy(cp,(__image_cmdline)); ++ cp += strlen(__image_cmdline); ++ + i = strlen(arcs_cmdline); + if (i > 0) { + *(cp++) = ' '; |