diff options
author | Thiemo Seufer <ths@networkno.de> | 2007-10-14 17:11:06 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-16 18:23:49 +0100 |
commit | 2f7055c5932ecc02159be375ebda1eee64665d17 (patch) | |
tree | c4de3e865dcbb9af7becf7fa36190027b23d2321 /arch/mips/mipssim | |
parent | 0e6799ed076fb11b3ee0a8bc19018f3410e357b2 (diff) |
[MIPS] MIPSsim: Fix booting from NFS root
MIPSsim probably doesn't have any sort of environment, but writing
a zero in it kills even the compiled in command line. This prevents
booting via NFS root.
Signed-Off-By: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mipssim')
-rw-r--r-- | arch/mips/mipssim/sim_cmdline.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/mips/mipssim/sim_cmdline.c b/arch/mips/mipssim/sim_cmdline.c index c63021a5dc6..74240e1ce5a 100644 --- a/arch/mips/mipssim/sim_cmdline.c +++ b/arch/mips/mipssim/sim_cmdline.c @@ -28,8 +28,5 @@ char * __init prom_getcmdline(void) void __init prom_init_cmdline(void) { - char *cp; - cp = arcs_cmdline; - /* Get boot line from environment? */ - *cp = '\0'; + /* XXX: Get boot line from environment? */ } |