diff options
author | Roman Yeryomin <roman@advem.lv> | 2018-11-25 14:55:38 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-11-26 09:31:50 +0100 |
commit | 920845357fc6f84fe1a8bcb4a504fff499bce085 (patch) | |
tree | 70690cf3ccf818a0973802d450f5af36cd6ce67a /target/linux/rb532/patches-4.14/001-cmdline_hack.patch | |
parent | a0d5acfbe2bd4f9423d08d88706456e0bd62d4ce (diff) | |
download | upstream-920845357fc6f84fe1a8bcb4a504fff499bce085.tar.gz upstream-920845357fc6f84fe1a8bcb4a504fff499bce085.tar.bz2 upstream-920845357fc6f84fe1a8bcb4a504fff499bce085.zip |
rb532: add 4.14 support
Signed-off-by: Roman Yeryomin <roman@advem.lv>
Diffstat (limited to 'target/linux/rb532/patches-4.14/001-cmdline_hack.patch')
-rw-r--r-- | target/linux/rb532/patches-4.14/001-cmdline_hack.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/rb532/patches-4.14/001-cmdline_hack.patch b/target/linux/rb532/patches-4.14/001-cmdline_hack.patch new file mode 100644 index 0000000000..a39da9c14a --- /dev/null +++ b/target/linux/rb532/patches-4.14/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++) = ' '; |