forked from pool/elilo
5048a757ed
Make elilo build with new gnu-efi and incorporate SLE changes. OBS-URL: https://build.opensuse.org/request/show/652138 OBS-URL: https://build.opensuse.org/package/show/Base:System/elilo?expand=0&rev=18
27 lines
653 B
Diff
27 lines
653 B
Diff
---
|
|
choosers/textmenu.c | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
--- a/choosers/textmenu.c
|
|
+++ b/choosers/textmenu.c
|
|
@@ -308,11 +308,19 @@ reprint:
|
|
|
|
switch (key.UnicodeChar) {
|
|
/* XXX Do we really want this in textmenual mode? */
|
|
+#if 0
|
|
+ /*
|
|
+ * Definitely not, as '?' is a valid character on a
|
|
+ * kernel command line and sometimes needed for URLs
|
|
+ * while booting an installation. (And the output
|
|
+ * is barely visible anyhow...)
|
|
+ */
|
|
case L'?':
|
|
Print(L"\n");
|
|
print_devices();
|
|
first_time = 0;
|
|
goto reprint;
|
|
+#endif
|
|
case CHAR_BACKSPACE:
|
|
case CHAR_DEL:
|
|
if (PromptLen == 0) break;
|