Hi, PageUp and PageDown are swapped when using the console (they work correctly using serial). The following fixes it:
Index: stage2/shared.h =================================================================== RCS file: /cvsroot/grub/grub/stage2/shared.h,v retrieving revision 1.92 diff -u -r1.92 shared.h --- stage2/shared.h 17 Feb 2003 12:35:30 -0000 1.92 +++ stage2/shared.h 18 Mar 2003 22:33:18 -0000 @@ -281,8 +281,8 @@ # define KEY_BACKSPACE 0x0008 # define KEY_HOME 0x4700 # define KEY_END 0x4F00 -# define KEY_NPAGE 0x4900 -# define KEY_PPAGE 0x5100 +# define KEY_NPAGE 0x5100 +# define KEY_PPAGE 0x4900 # define A_NORMAL 0x7 # define A_REVERSE 0x70 #elif defined(HAVE_NCURSES_CURSES_H) Adam -- Adam [EMAIL PROTECTED] Lackorzynski http://os.inf.tu-dresden.de/~adam/ _______________________________________________ Bug-grub mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-grub
