Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 597c6740 authored by Robert Millan's avatar Robert Millan Committed by Ralf Baechle
Browse files

MIPS: Loongson: Remove ad-hoc cmdline default



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

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

Signed-off-by: default avatarRobert Millan <rmh@gnu.org>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1759/


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent e56293b1
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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();
}