Commit 7341df16 authored by David S. Miller's avatar David S. Miller

[SPARC]: Kill BOOTME_SINGLE.

Unused, but still allow the '-s' boot option to be passed
down to init.

Based upon patches by Martin Habets.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9950421c
...@@ -103,7 +103,6 @@ void prom_sync_me(void) ...@@ -103,7 +103,6 @@ void prom_sync_me(void)
unsigned int boot_flags __initdata = 0; unsigned int boot_flags __initdata = 0;
#define BOOTME_DEBUG 0x1 #define BOOTME_DEBUG 0x1
#define BOOTME_SINGLE 0x2
/* Exported for mm/init.c:paging_init. */ /* Exported for mm/init.c:paging_init. */
unsigned long cmdline_memory_size __initdata = 0; unsigned long cmdline_memory_size __initdata = 0;
...@@ -132,7 +131,6 @@ static void __init process_switch(char c) ...@@ -132,7 +131,6 @@ static void __init process_switch(char c)
boot_flags |= BOOTME_DEBUG; boot_flags |= BOOTME_DEBUG;
break; break;
case 's': case 's':
boot_flags |= BOOTME_SINGLE;
break; break;
case 'h': case 'h':
prom_printf("boot_flags_init: Halt!\n"); prom_printf("boot_flags_init: Halt!\n");
......
...@@ -74,7 +74,6 @@ prom_console_write(struct console *con, const char *s, unsigned n) ...@@ -74,7 +74,6 @@ prom_console_write(struct console *con, const char *s, unsigned n)
unsigned int boot_flags = 0; unsigned int boot_flags = 0;
#define BOOTME_DEBUG 0x1 #define BOOTME_DEBUG 0x1
#define BOOTME_SINGLE 0x2
/* Exported for mm/init.c:paging_init. */ /* Exported for mm/init.c:paging_init. */
unsigned long cmdline_memory_size = 0; unsigned long cmdline_memory_size = 0;
...@@ -102,7 +101,6 @@ static void __init process_switch(char c) ...@@ -102,7 +101,6 @@ static void __init process_switch(char c)
boot_flags |= BOOTME_DEBUG; boot_flags |= BOOTME_DEBUG;
break; break;
case 's': case 's':
boot_flags |= BOOTME_SINGLE;
break; break;
case 'h': case 'h':
prom_printf("boot_flags_init: Halt!\n"); prom_printf("boot_flags_init: Halt!\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment