* usb mouse, iomega zip and 2.2.19-pre7
@ 2001-01-09 20:46 f5ibh
2001-01-10 8:26 ` Greg KH
0 siblings, 1 reply; 6+ messages in thread
From: f5ibh @ 2001-01-09 20:46 UTC (permalink / raw)
To: linux-kernel
Hi,
usb-mouse
---------
In 2.2.19-pre6 (and previous) we had a CONFIG_INPUT_MOUSEDEV. It has
disapearead in 2.2.19-7. The only alternative for an usb mouse seems
to be CONFIG_USB_MOUSE which is for an USB HIDBP Mouse.
So there is no mean to get mousedev & input compiled.
Maybe "Input core support" is missing with the matching ../drivers/input
directory.
Iomega ZIP support
------------------
IOMEGA parallel port (ppa - older drives)
IOMEGA parallel port (imm - newer drives)
Have vanished from the "SCSI low-level drivers" sub-menu.
--------
Regards
Jean-Luc
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: usb mouse, iomega zip and 2.2.19-pre7
2001-01-09 20:46 usb mouse, iomega zip and 2.2.19-pre7 f5ibh
@ 2001-01-10 8:26 ` Greg KH
2001-01-11 0:44 ` [PATCH] USB Config fix for 2.2.19-pre7 Greg KH
2001-01-11 17:01 ` [linux-usb-devel] " Franz Sirl
0 siblings, 2 replies; 6+ messages in thread
From: Greg KH @ 2001-01-10 8:26 UTC (permalink / raw)
To: f5ibh; +Cc: linux-kernel
On Tue, Jan 09, 2001 at 09:46:14PM +0100, f5ibh wrote:
> Hi,
>
> usb-mouse
> ---------
> In 2.2.19-pre6 (and previous) we had a CONFIG_INPUT_MOUSEDEV. It has
> disapearead in 2.2.19-7. The only alternative for an usb mouse seems
> to be CONFIG_USB_MOUSE which is for an USB HIDBP Mouse.
>
> So there is no mean to get mousedev & input compiled.
> Maybe "Input core support" is missing with the matching ../drivers/input
> directory.
Crap, I messed up and forgot about this move. Patch soon to fix this,
thanks for noticing it.
greg k-h
--
greg@(kroah|wirex).com
http://immunix.org/~greg
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] USB Config fix for 2.2.19-pre7
2001-01-10 8:26 ` Greg KH
@ 2001-01-11 0:44 ` Greg KH
2001-01-11 17:01 ` [linux-usb-devel] " Franz Sirl
1 sibling, 0 replies; 6+ messages in thread
From: Greg KH @ 2001-01-11 0:44 UTC (permalink / raw)
To: Alan Cox; +Cc: f5ibh, linux-kernel, linux-usb-devel
[-- Attachment #1: Type: text/plain, Size: 184 bytes --]
Hi,
Here's a fix for the USB Config for 2.2.19-pre7. I messed up and took
out the HID devices in the patch I sent you for 2.2.19-pre6.
thanks,
greg k-h
--
greg@(kroah|wirex).com
[-- Attachment #2: usb-Config-2.2.19-pre7.diff --]
[-- Type: text/plain, Size: 2230 bytes --]
diff -Naur -X dontdiff linux-2.2.19-pre7/drivers/usb/Config.in linux-2.2.19-pre7-greg/drivers/usb/Config.in
--- linux-2.2.19-pre7/drivers/usb/Config.in Wed Jan 10 15:43:28 2001
+++ linux-2.2.19-pre7-greg/drivers/usb/Config.in Wed Jan 10 16:14:04 2001
@@ -36,16 +36,23 @@
dep_tristate ' USB Printer support' CONFIG_USB_PRINTER $CONFIG_USB
comment 'USB Human Interface Devices (HID)'
- if [ "$CONFIG_INPUT" = "n" ]; then
- comment ' Input core support is needed for USB HID'
- else
- dep_tristate ' USB Human Interface Device (full HID) support' CONFIG_USB_HID $CONFIG_USB $CONFIG_INPUT
- if [ "$CONFIG_USB_HID" != "y" ]; then
- dep_tristate ' USB HIDBP Keyboard (basic) support' CONFIG_USB_KBD $CONFIG_USB $CONFIG_INPUT
- dep_tristate ' USB HIDBP Mouse (basic) support' CONFIG_USB_MOUSE $CONFIG_USB $CONFIG_INPUT
- fi
- dep_tristate ' Wacom Intuos/Graphire tablet support' CONFIG_USB_WACOM $CONFIG_USB $CONFIG_INPUT
+ dep_tristate ' USB Human Interface Device (full HID) support' CONFIG_USB_HID $CONFIG_USB
+ if [ "$CONFIG_USB_HID" != "y" ]; then
+ dep_tristate ' USB HIDBP Keyboard (basic) support' CONFIG_USB_KBD $CONFIG_USB
+ dep_tristate ' USB HIDBP Mouse (basic) support' CONFIG_USB_MOUSE $CONFIG_USB
fi
+ if [ "$CONFIG_VT" = "y" ]; then
+ dep_tristate ' Keyboard support' CONFIG_INPUT_KEYBDEV $CONFIG_USB $CONFIG_USB_HID
+ fi
+ dep_tristate ' Mouse support' CONFIG_INPUT_MOUSEDEV $CONFIG_USB $CONFIG_USB_HID
+ if [ "$CONFIG_INPUT_MOUSEDEV" != "n" ]; then
+ int ' Horizontal screen resolution' CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
+ int ' Vertical screen resolution' CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
+ fi
+ dep_tristate ' Joystick support' CONFIG_INPUT_JOYDEV $CONFIG_USB $CONFIG_USB_HID
+ dep_tristate ' Logitech WingMan Force joystick support' CONFIG_USB_WMFORCE $CONFIG_USB $CONFIG_USB_HID
+ dep_tristate ' Wacom Intuos/Graphire tablet support' CONFIG_USB_WACOM $CONFIG_USB $CONFIG_USB_HID
+ dep_tristate ' Event interface support' CONFIG_INPUT_EVDEV $CONFIG_USB $CONFIG_USB_HID
comment 'USB Imaging devices'
dep_tristate ' USB Kodak DC-2xx Camera support' CONFIG_USB_DC2XX $CONFIG_USB
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-usb-devel] [PATCH] USB Config fix for 2.2.19-pre7
2001-01-10 8:26 ` Greg KH
2001-01-11 0:44 ` [PATCH] USB Config fix for 2.2.19-pre7 Greg KH
@ 2001-01-11 17:01 ` Franz Sirl
2001-01-12 7:26 ` Greg KH
2001-01-12 11:57 ` Franz Sirl
1 sibling, 2 replies; 6+ messages in thread
From: Franz Sirl @ 2001-01-11 17:01 UTC (permalink / raw)
To: linux-usb-devel; +Cc: Alan Cox, f5ibh, linux-kernel, linux-usb-devel
At 01:44 2001-01-11, Greg KH wrote:
>Hi,
>
>Here's a fix for the USB Config for 2.2.19-pre7. I messed up and took
>out the HID devices in the patch I sent you for 2.2.19-pre6.
Why do the input handlers depend on CONFIG_USB_HID? On PPC we already have
trouble with them depending on CONFIG_USB, so everybody has to select
CONFIG_USB even if he just has ADB hardware.
Alan, would you accept a patch putting 2 main_menu's for CONFIG_USB and
CONFIG_INPUT into usb/Config.in? This avoids the move of the input drivers
into drivers/input as in 2.4 (which you seemingly don't want in 2.2) and
only requires a minor adjustment in drivers/Makefile.
Franz.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-usb-devel] [PATCH] USB Config fix for 2.2.19-pre7
2001-01-11 17:01 ` [linux-usb-devel] " Franz Sirl
@ 2001-01-12 7:26 ` Greg KH
2001-01-12 11:57 ` Franz Sirl
1 sibling, 0 replies; 6+ messages in thread
From: Greg KH @ 2001-01-12 7:26 UTC (permalink / raw)
To: Franz Sirl; +Cc: linux-usb-devel, f5ibh, linux-kernel
On Thu, Jan 11, 2001 at 06:01:19PM +0100, Franz Sirl wrote:
> Why do the input handlers depend on CONFIG_USB_HID? On PPC we already have
> trouble with them depending on CONFIG_USB, so everybody has to select
> CONFIG_USB even if he just has ADB hardware.
Don't these input drivers _require_ the USB HID driver core to work
properly?
Or am I mistaken, and this is the 2.4.0 input core code, but
not in a separate directory, like 2.4.0 has it?
thanks,
greg k-h
--
greg@(kroah|wirex).com
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-usb-devel] [PATCH] USB Config fix for 2.2.19-pre7
2001-01-11 17:01 ` [linux-usb-devel] " Franz Sirl
2001-01-12 7:26 ` Greg KH
@ 2001-01-12 11:57 ` Franz Sirl
1 sibling, 0 replies; 6+ messages in thread
From: Franz Sirl @ 2001-01-12 11:57 UTC (permalink / raw)
To: Greg KH; +Cc: linux-usb-devel, f5ibh, linux-kernel
At 08:26 2001-01-12, Greg KH wrote:
>On Thu, Jan 11, 2001 at 06:01:19PM +0100, Franz Sirl wrote:
> > Why do the input handlers depend on CONFIG_USB_HID? On PPC we already have
> > trouble with them depending on CONFIG_USB, so everybody has to select
> > CONFIG_USB even if he just has ADB hardware.
>
>Don't these input drivers _require_ the USB HID driver core to work
>properly?
No.
>Or am I mistaken, and this is the 2.4.0 input core code, but
>not in a separate directory, like 2.4.0 has it?
Yes, it's the input core code, but without a separate directory or
main_menu entry :-(. That means that currently on PPC people have to select
CONFIG_USB even if they just want to have the input core code for
CONFIG_INPUT_ADBHID. Since Alan rejected the creation of drivers/input in
2.2 for unknown (?) reasons, I suggest to add a 2nd main_menu in
usb/Config.in for CONFIG_INPUT items. Then adjust drivers/Makefile in a way
that drivers/usb is entered if CONFIG_USB is unset but CONFIG_INPUT is set.
Franz.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2001-01-12 11:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-01-09 20:46 usb mouse, iomega zip and 2.2.19-pre7 f5ibh
2001-01-10 8:26 ` Greg KH
2001-01-11 0:44 ` [PATCH] USB Config fix for 2.2.19-pre7 Greg KH
2001-01-11 17:01 ` [linux-usb-devel] " Franz Sirl
2001-01-12 7:26 ` Greg KH
2001-01-12 11:57 ` Franz Sirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox