All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] removed ad-hoc cmdline default
@ 2010-11-07 12:38 Robert Millan
  2010-11-08 22:58 ` Ralf Baechle
  2011-01-24 23:22 ` Ralf Baechle
  0 siblings, 2 replies; 3+ messages in thread
From: Robert Millan @ 2010-11-07 12:38 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 501 bytes --]


Loongson builds have an ad-hoc cmdline default of "console=ttyS0,115200 
root=/dev/hda1". These settings come from vendor (I remember builds 
from Lemote branch requiring a "console=tty" override in order to get a 
working console).

At least on my Yeeloong, they're particularly useless: there's no 
(external) serial port, and the IDE drive is now recognised as /dev/
sda.

I recommend removing them. They make sense from a distributor/vendor 
POV but otherwise are just a nuissance.


[-- Attachment #2: loongson_cmdline.diff --]
[-- Type: text/x-patch, Size: 612 bytes --]


Remove ad-hoc cmdline settings.

Signed-off-by: Robert Millan <rmh@gnu.org>

diff --git a/arch/mips/loongson/common/cmdline.c b/arch/mips/loongson/common/cmdline.c
index 1a06def..353e1d2 100644
--- a/arch/mips/loongson/common/cmdline.c
+++ b/arch/mips/loongson/common/cmdline.c
@@ -44,10 +44,5 @@ void __init prom_init_cmdline(void)
 		strcat(arcs_cmdline, " ");
 	}
 
-	if ((strstr(arcs_cmdline, "console=")) == NULL)
-		strcat(arcs_cmdline, " console=ttyS0,115200");
-	if ((strstr(arcs_cmdline, "root=")) == NULL)
-		strcat(arcs_cmdline, " root=/dev/hda1");
-
 	prom_init_machtype();
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-24 23:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-07 12:38 [PATCH] removed ad-hoc cmdline default Robert Millan
2010-11-08 22:58 ` Ralf Baechle
2011-01-24 23:22 ` Ralf Baechle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.