diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-01-14 04:15:00 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-01-24 05:13:58 -0500 |
commit | c53653130f2868e44c6e8346d110d27d39e7d07b (patch) | |
tree | 291a9d53bf37c814af3724a6e026e899f6c814ad /arch/ppc/boot/simple/misc.c | |
parent | cfcd1705b61ecce1ab102b9593cf733fef314a19 (diff) |
[POWERPC] Remove the broken Gemini support
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/boot/simple/misc.c')
-rw-r--r-- | arch/ppc/boot/simple/misc.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/ppc/boot/simple/misc.c b/arch/ppc/boot/simple/misc.c index a5df08963695..c3d3305eb5ca 100644 --- a/arch/ppc/boot/simple/misc.c +++ b/arch/ppc/boot/simple/misc.c | |||
@@ -42,14 +42,11 @@ | |||
42 | #endif | 42 | #endif |
43 | 43 | ||
44 | /* Will / Can the user give input? | 44 | /* Will / Can the user give input? |
45 | * Val Henson has requested that Gemini doesn't wait for the | ||
46 | * user to edit the cmdline or not. | ||
47 | */ | 45 | */ |
48 | #if (defined(CONFIG_SERIAL_8250_CONSOLE) \ | 46 | #if (defined(CONFIG_SERIAL_8250_CONSOLE) \ |
49 | || defined(CONFIG_VGA_CONSOLE) \ | 47 | || defined(CONFIG_VGA_CONSOLE) \ |
50 | || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \ | 48 | || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \ |
51 | || defined(CONFIG_SERIAL_MPSC_CONSOLE)) \ | 49 | || defined(CONFIG_SERIAL_MPSC_CONSOLE)) |
52 | && !defined(CONFIG_GEMINI) | ||
53 | #define INTERACTIVE_CONSOLE 1 | 50 | #define INTERACTIVE_CONSOLE 1 |
54 | #endif | 51 | #endif |
55 | 52 | ||
@@ -178,16 +175,6 @@ decompress_kernel(unsigned long load_addr, int num_words, unsigned long cksum) | |||
178 | 175 | ||
179 | if (keyb_present) | 176 | if (keyb_present) |
180 | CRT_tstc(); /* Forces keyboard to be initialized */ | 177 | CRT_tstc(); /* Forces keyboard to be initialized */ |
181 | #ifdef CONFIG_GEMINI | ||
182 | /* | ||
183 | * If cmd_line is empty and cmd_preset is not, copy cmd_preset | ||
184 | * to cmd_line. This way we can override cmd_preset with the | ||
185 | * command line from Smon. | ||
186 | */ | ||
187 | |||
188 | if ( (cmd_line[0] == '\0') && (cmd_preset[0] != '\0')) | ||
189 | memcpy (cmd_line, cmd_preset, sizeof(cmd_preset)); | ||
190 | #endif | ||
191 | 178 | ||
192 | /* Display standard Linux/PPC boot prompt for kernel args */ | 179 | /* Display standard Linux/PPC boot prompt for kernel args */ |
193 | puts("\nLinux/PPC load: "); | 180 | puts("\nLinux/PPC load: "); |