From: johann d. <jd...@us...> - 2002-04-17 19:40:18
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/input/joystick/iforce In directory usw-pr-cvs1:/tmp/cvs-serv7952/drivers/input/joystick/iforce Modified Files: Config.in Log Message: Fixed bug that enabled I-Force entries if CONFIG_JOYSTICK_IFORCE was not set. Index: Config.in =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/input/joystick/iforce/Config.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Config.in 10 Feb 2002 23:16:19 -0000 1.2 +++ Config.in 17 Apr 2002 19:40:14 -0000 1.3 @@ -4,7 +4,7 @@ dep_tristate 'I-Force devices' CONFIG_JOYSTICK_IFORCE $CONFIG_INPUT $CONFIG_INPUT_JOYSTICK -if [ "$CONFIG_JOYSTICK_IFORCE" != "n" ]; then +if [ "$CONFIG_JOYSTICK_IFORCE" = "m" -o "$CONFIG_JOYSTICK_IFORCE" = "y" ]; then dep_bool ' I-Force USB joysticks and wheels' CONFIG_JOYSTICK_IFORCE_USB $CONFIG_USB if [ "$CONFIG_INPUT_SERIO" != "n" -a "$CONFIG_INPUT_SERPORT" != "n" ]; then bool ' I-Force Serial joysticks and wheels' CONFIG_JOYSTICK_IFORCE_232 |