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