2009-05-28 16:10:55 +03:00
|
|
|
--- a/arch/mips/rb532/prom.c
|
|
|
|
+++ b/arch/mips/rb532/prom.c
|
2009-05-28 21:54:09 +03:00
|
|
|
@@ -67,6 +67,7 @@ static inline unsigned long tag2ul(char
|
2009-05-28 16:10:55 +03:00
|
|
|
return simple_strtoul(num, 0, 10);
|
|
|
|
}
|
|
|
|
|
2009-09-10 21:30:09 +03:00
|
|
|
+extern char __image_cmdline[];
|
2009-05-28 16:10:55 +03:00
|
|
|
void __init prom_setup_cmdline(void)
|
|
|
|
{
|
2010-02-04 16:35:38 +02:00
|
|
|
static char cmd_line[CL_SIZE] __initdata;
|
2009-05-28 21:54:09 +03:00
|
|
|
@@ -109,6 +110,9 @@ void __init prom_setup_cmdline(void)
|
2009-05-28 16:10:55 +03:00
|
|
|
}
|
|
|
|
*(cp++) = ' ';
|
|
|
|
|
2009-09-10 21:30:09 +03:00
|
|
|
+ strcpy(cp,(__image_cmdline));
|
|
|
|
+ cp += strlen(__image_cmdline);
|
2009-05-28 16:10:55 +03:00
|
|
|
+
|
|
|
|
i = strlen(arcs_cmdline);
|
|
|
|
if (i > 0) {
|
|
|
|
*(cp++) = ' ';
|