aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/rb532/patches/001-cmdline_hack.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-10-26 09:00:35 +0000
committerJohn Crispin <blogic@openwrt.org>2015-10-26 09:00:35 +0000
commit45b86af9804065f1c199f2775339a29fe6ce019b (patch)
treedc90aaae80c8e52311ab049daec9d1fad174e04f /target/linux/rb532/patches/001-cmdline_hack.patch
parent06e9be05d765903a968788b026ea9cf673ee78e4 (diff)
downloadmaster-187ad058-45b86af9804065f1c199f2775339a29fe6ce019b.tar.gz
master-187ad058-45b86af9804065f1c199f2775339a29fe6ce019b.tar.bz2
master-187ad058-45b86af9804065f1c199f2775339a29fe6ce019b.zip
rb532: prepare switch to 4.1
Signed-off-by: Roman Yeryomin <roman@advem.lv> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47255 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/rb532/patches/001-cmdline_hack.patch')
-rw-r--r--target/linux/rb532/patches/001-cmdline_hack.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/rb532/patches/001-cmdline_hack.patch b/target/linux/rb532/patches/001-cmdline_hack.patch
new file mode 100644
index 0000000000..a39da9c14a
--- /dev/null
+++ b/target/linux/rb532/patches/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;
+@@ -108,6 +109,9 @@ void __init prom_setup_cmdline(void)
+ }
+ *(cp++) = ' ';
+
++ strcpy(cp,(__image_cmdline));
++ cp += strlen(__image_cmdline);
++
+ i = strlen(arcs_cmdline);
+ if (i > 0) {
+ *(cp++) = ' ';