diff options
author | Greg Ungerer <gerg@linux-m68k.org> | 2016-09-05 08:23:50 +0300 |
---|---|---|
committer | Greg Ungerer <gerg@linux-m68k.org> | 2016-09-26 05:02:59 +0300 |
commit | aa5ac789bd96c7a6628a8167de562fa660f1f481 (patch) | |
tree | 3cba478fe5cc7c0eec6154dda3d37e7aa7bf77c7 /arch/m68k/kernel/setup_mm.c | |
parent | 2a744007c332f9d604b95aaecb106596c52ab001 (diff) | |
download | linux-aa5ac789bd96c7a6628a8167de562fa660f1f481.tar.xz |
m68k: generalize uboot command line support
The uboot command line support needs to be used by both MMU and no-MMU
setups, but currently we only have the code in the no-MMU code paths.
Move the uboot command line processing code into its own file. Add
appropriate calls to it from both the MMU and no-MMU arch setup code.
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/kernel/setup_mm.c')
-rw-r--r-- | arch/m68k/kernel/setup_mm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/m68k/kernel/setup_mm.c b/arch/m68k/kernel/setup_mm.c index 9afad2b64c13..9f61f517f810 100644 --- a/arch/m68k/kernel/setup_mm.c +++ b/arch/m68k/kernel/setup_mm.c @@ -274,6 +274,7 @@ void __init setup_arch(char **cmdline_p) strncpy(m68k_command_line, CONFIG_BOOTPARAM_STRING, CL_SIZE); m68k_command_line[CL_SIZE - 1] = 0; #endif /* CONFIG_BOOTPARAM */ + process_uboot_commandline(&m68k_command_line[0], CL_SIZE); *cmdline_p = m68k_command_line; memcpy(boot_command_line, *cmdline_p, CL_SIZE); |