[patch 11/22] __early_param for m68knommu

From: trini
Date: Wed Mar 24 2004 - 19:08:09 EST



- Remove saved_command_line (and saving of the command line).
- Call parse_early_options


---

linux-2.6-early_setup-trini/arch/m68knommu/kernel/setup.c | 3 +--
linux-2.6-early_setup-trini/arch/m68knommu/kernel/vmlinux.lds.S | 3 +++
2 files changed, 4 insertions(+), 2 deletions(-)

diff -puN arch/m68knommu/kernel/setup.c~m68knommu arch/m68knommu/kernel/setup.c
--- linux-2.6-early_setup/arch/m68knommu/kernel/setup.c~m68knommu 2004-03-24 16:15:07.785434583 -0700
+++ linux-2.6-early_setup-trini/arch/m68knommu/kernel/setup.c 2004-03-24 16:15:07.790433457 -0700
@@ -226,8 +226,7 @@ void setup_arch(char **cmdline_p)

/* Keep a copy of command line */
*cmdline_p = &command_line[0];
- memcpy(saved_command_line, command_line, sizeof(saved_command_line));
- saved_command_line[sizeof(saved_command_line)-1] = 0;
+ parse_early_options(cmdline_p);

#ifdef DEBUG
if (strlen(*cmdline_p))
diff -puN arch/m68knommu/kernel/vmlinux.lds.S~m68knommu arch/m68knommu/kernel/vmlinux.lds.S
--- linux-2.6-early_setup/arch/m68knommu/kernel/vmlinux.lds.S~m68knommu 2004-03-24 16:15:07.787434133 -0700
+++ linux-2.6-early_setup-trini/arch/m68knommu/kernel/vmlinux.lds.S 2004-03-24 16:15:07.790433457 -0700
@@ -262,6 +262,9 @@ SECTIONS {
__setup_start = .;
*(.init.setup)
__setup_end = .;
+ __early_begin = .;
+ __early_param : { *(__early_param) }
+ __early_end = .;
__start___param = .;
*(__param)
__stop___param = .;

_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/