Messages in this thread Patch in this message |  | | Date | Thu, 6 Jun 1996 14:16:37 +0200 (MET DST) | From | Henrik P Johnson <> | Subject | A small configuration patch |
| |
diff -ru linux-pre2.0.12/Documentation/Configure.help linux/Documentation/Configure.help --- linux-pre2.0.12/Documentation/Configure.help Fri May 31 12:46:26 1996 +++ linux/Documentation/Configure.help Tue Jun 4 22:44:36 1996 @@ -3136,6 +3136,12 @@ Logitech) plugging in a COM port (rectangular with 9 or 25 pins) which is supported automatically. +Busmouse IRQ selection +MOUSE_IRQ + The IRQ which you busmouse card is configured to use, this can moustly + be read out from your card, or if your not into opening your computer + check your reference manual. Factory setting is usually 5. + PS/2 mouse (aka "auxiliary device") support CONFIG_PSMOUSE The PS/2 mouse connects to a special mouse port that looks much like diff -ru linux-pre2.0.12/drivers/char/Config.in linux/drivers/char/Config.in --- linux-pre2.0.12/drivers/char/Config.in Fri May 31 12:46:26 1996 +++ linux/drivers/char/Config.in Tue Jun 4 22:41:27 1996 @@ -21,8 +21,11 @@ tristate 'ATIXL busmouse support' CONFIG_ATIXL_BUSMOUSE tristate 'Logitech busmouse support' CONFIG_BUSMOUSE tristate 'Microsoft busmouse support' CONFIG_MS_BUSMOUSE + if [ "$CONFIG_BUSMOUSE" != "n" -o "$CONFIG_MS_BUSMOUSE" != "n" ]; then + int 'Busmouse IRQ, check you reference manual' MOUSE_IRQ + fi tristate 'PS/2 mouse (aka "auxiliary device") support' CONFIG_PSMOUSE - if [ "$CONFIG_PSMOUSE" != "n" ]; then + if [ "$CONFIG_PSMOUSE" != "n" ]; then bool 'C&T 82C710 mouse port support (as on TI Travelmate)' CONFIG_82C710_MOUSE fi fi diff -ru linux-pre2.0.12/include/linux/busmouse.h linux/include/linux/busmouse.h --- linux-pre2.0.12/include/linux/busmouse.h Thu Dec 14 07:16:53 1995 +++ linux/include/linux/busmouse.h Tue Jun 4 22:41:47 1996 @@ -27,7 +27,6 @@ * */ -#define MOUSE_IRQ 5 #define LOGITECH_BUSMOUSE 0 /* Minor device # for Logitech */ #define MICROSOFT_BUSMOUSE 2 /* Minor device # for Microsoft */ |  |