--- grub/ChangeLog.04 Mon Oct 14 15:11:03 2002 +++ grub/ChangeLog Mon Oct 14 15:11:59 2002 @@ -1,5 +1,8 @@ 2002-10-14 Adam Lackorzynski + * stage2/stage2.c (run_menu): Make right key to do the same + as enter in the menu. + * stage2/stage2.c (run_menu): Add page up and page down support. * stage2/asm.S (translation_table): Add 3 and 7 for page up and down. * stage2/serial.c (serial_translate_key_sequence): Add page up and --- grub/stage2/stage2.c.04 Mon Oct 14 01:14:45 2002 +++ grub/stage2/stage2.c Mon Oct 14 01:28:46 2002 @@ -313,8 +313,9 @@ { if (config_entries) printf ("\ - Press enter to boot the selected OS, \'e\' to edit the\n\ - commands before booting, \'c\' for a command-line, or \'r\' to reload."); + Press enter or %c to boot the selected OS, \'e\' to edit the\n\ + commands before booting, \'c\' for a command-line, or \'r\' to reload.", + DISP_RIGHT); else printf ("\ Press \'b\' to boot, \'e\' to edit the selected command in the\n\ @@ -532,7 +533,7 @@ if (c == 'r') return; - if ((c == '\n') || (c == '\r')) + if ((c == '\n') || (c == '\r') || (c == 6)) break; } else