aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2024-02-08 08:35:25 +0100
committerHelge Deller <deller@gmx.de>2024-02-08 10:08:55 +0100
commit49dfa18238341069b2829e247dec51929c52effb (patch)
tree861c61d9674a6f7c5c013c7dcb0e3a7b11ff6914
parentd7078ed49b4f896dd2c8694129667a9662155d2f (diff)
downloadseabios-hppa-49dfa18238341069b2829e247dec51929c52effb.zip
seabios-hppa-49dfa18238341069b2829e247dec51929c52effb.tar.gz
seabios-hppa-49dfa18238341069b2829e247dec51929c52effb.tar.bz2
parisc: USB keyboard not yet functional in boot menu
The USB keyboard will be detected, but USB driver in firmware isn't yet fully fixed to work correctly on parisc's big-endian hardware.... Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/parisc/parisc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c
index a7bd22f..0d9168e 100644
--- a/src/parisc/parisc.c
+++ b/src/parisc/parisc.c
@@ -2677,12 +2677,14 @@ static void menu_loop(void)
char input[24];
char *c, reply;
- // snprintf(input, sizeof(input), "BOOT FWSCSI.%d.0", boot_drive->target);
again:
print_menu();
again2:
input[0] = '\0';
+ if (is_64bit_PDC() && HPA_is_LASI_graphics(PAGE0->mem_cons.hpa)) {
+ printf("WARNING: USB Keyboard not yet functional in boot menu with 64-bit firmware!\n");
+ }
printf("Main Menu: Enter command > ");
/* ask user for boot menu command */
enter_text(input, sizeof(input)-1);