aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/kernel
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2011-10-18 21:46:03 -0400
committerGreg Ungerer <gerg@uclinux.org>2011-12-24 06:47:57 -0500
commitd1db9120cd7df0872385fd29a25257f23cb70527 (patch)
treebc412f63e47e5e19724b4beb87345e8b647a2d69 /arch/m68k/kernel
parente87c09a899d38d1b6858e010c22a1200fb77965d (diff)
m68k: support configure time command line for MMU m68k
The non-MMU builds of m68k allow a fixed kernel boot command line to be configured at configure time. Allow this MMU builds as well. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r--arch/m68k/kernel/setup_mm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68k/kernel/setup_mm.c b/arch/m68k/kernel/setup_mm.c
index c3b45061dd08..55f8f5049f68 100644
--- a/arch/m68k/kernel/setup_mm.c
+++ b/arch/m68k/kernel/setup_mm.c
@@ -258,6 +258,10 @@ void __init setup_arch(char **cmdline_p)
258 init_mm.end_data = (unsigned long)_edata; 258 init_mm.end_data = (unsigned long)_edata;
259 init_mm.brk = (unsigned long)_end; 259 init_mm.brk = (unsigned long)_end;
260 260
261#if defined(CONFIG_BOOTPARAM)
262 strncpy(m68k_command_line, CONFIG_BOOTPARAM_STRING, CL_SIZE);
263 m68k_command_line[CL_SIZE - 1] = 0;
264#endif /* CONFIG_BOOTPARAM */
261 *cmdline_p = m68k_command_line; 265 *cmdline_p = m68k_command_line;
262 memcpy(boot_command_line, *cmdline_p, CL_SIZE); 266 memcpy(boot_command_line, *cmdline_p, CL_SIZE);
263 267