* 2.6.4: disabling SCSI support not possible
@ 2004-04-02 13:09 Olaf Zaplinski
2004-04-02 13:18 ` Grzegorz Kulewski
2004-04-02 13:21 ` Sean Neakums
0 siblings, 2 replies; 14+ messages in thread
From: Olaf Zaplinski @ 2004-04-02 13:09 UTC (permalink / raw)
To: linux-kernel
Hi *,
I cannot disable SCSI completely in 2.6.4's 'menuconfig'.
Regards
Olaf
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 13:09 2.6.4: disabling SCSI support not possible Olaf Zaplinski
@ 2004-04-02 13:18 ` Grzegorz Kulewski
2004-04-02 13:21 ` Sean Neakums
1 sibling, 0 replies; 14+ messages in thread
From: Grzegorz Kulewski @ 2004-04-02 13:18 UTC (permalink / raw)
To: Olaf Zaplinski; +Cc: linux-kernel
On Fri, 2 Apr 2004, Olaf Zaplinski wrote:
> Hi *,
>
> I cannot disable SCSI completely in 2.6.4's 'menuconfig'.
In default config file there is activated something under USB, what
depends on SCSI. Try to disable that first.
Grzegorz Kulewski
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 13:09 2.6.4: disabling SCSI support not possible Olaf Zaplinski
2004-04-02 13:18 ` Grzegorz Kulewski
@ 2004-04-02 13:21 ` Sean Neakums
2004-04-02 13:42 ` Russell King
1 sibling, 1 reply; 14+ messages in thread
From: Sean Neakums @ 2004-04-02 13:21 UTC (permalink / raw)
To: Olaf Zaplinski; +Cc: linux-kernel
Olaf Zaplinski <o.zaplinski@broadnet-mediascape.de> writes:
> I cannot disable SCSI completely in 2.6.4's 'menuconfig'.
I believe that some kernel components require SCSI to be useful and so
force SCSI to be activated. One example that springs to mind is
usb-storage.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 13:21 ` Sean Neakums
@ 2004-04-02 13:42 ` Russell King
2004-04-02 14:03 ` Marc-Christian Petersen
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Russell King @ 2004-04-02 13:42 UTC (permalink / raw)
To: Olaf Zaplinski, linux-kernel, Greg KH
On Fri, Apr 02, 2004 at 02:21:40PM +0100, Sean Neakums wrote:
> Olaf Zaplinski <o.zaplinski@broadnet-mediascape.de> writes:
>
> > I cannot disable SCSI completely in 2.6.4's 'menuconfig'.
>
> I believe that some kernel components require SCSI to be useful and so
> force SCSI to be activated. One example that springs to mind is
> usb-storage.
usb-storage should depend on SCSI rather than forcing SCSI to be
enabled.
Using 'select' is all very well for the case where the target
configuration symbol is not user selectable, but in the case that
it is, it leads to the confusion shown above.
Maybe USB_STORAGE help text should say that it needs SCSI support?
Therefore, I propose this patch:
--- orig/drivers/usb/storage/Kconfig Sat Mar 20 09:22:45 2004
+++ linux/drivers/usb/storage/Kconfig Fri Apr 2 14:41:05 2004
@@ -4,8 +4,7 @@
config USB_STORAGE
tristate "USB Mass Storage support"
- depends on USB
- select SCSI
+ depends on USB && SCSI
---help---
Say Y here if you want to connect USB mass storage devices to your
computer's USB port. This is the driver you need for USB floppy drives,
@@ -13,6 +12,9 @@ config USB_STORAGE
similar devices. This driver may also be used for some cameras and
card readers.
+ Please select SCSI support before enabling USB Mass Storage
+ support.
+
To compile this driver as a module, choose M here: the
module will be called usb-storage.
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/
2.6 Serial core
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 13:42 ` Russell King
@ 2004-04-02 14:03 ` Marc-Christian Petersen
2004-04-02 16:59 ` Greg KH
2004-04-02 19:29 ` Ricky Beam
2 siblings, 0 replies; 14+ messages in thread
From: Marc-Christian Petersen @ 2004-04-02 14:03 UTC (permalink / raw)
To: linux-kernel; +Cc: Russell King, Olaf Zaplinski, Greg KH
On Friday 02 April 2004 15:42, Russell King wrote:
Hi Russel,
> --- orig/drivers/usb/storage/Kconfig Sat Mar 20 09:22:45 2004
> +++ linux/drivers/usb/storage/Kconfig Fri Apr 2 14:41:05 2004
> @@ -4,8 +4,7 @@
>
> config USB_STORAGE
> tristate "USB Mass Storage support"
> - depends on USB
> - select SCSI
> + depends on USB && SCSI
> ---help---
> Say Y here if you want to connect USB mass storage devices to your
> computer's USB port. This is the driver you need for USB floppy drives,
> @@ -13,6 +12,9 @@ config USB_STORAGE
> similar devices. This driver may also be used for some cameras and
> card readers.
>
> + Please select SCSI support before enabling USB Mass Storage
> + support.
> +
> To compile this driver as a module, choose M here: the
> module will be called usb-storage.
pretty useless if you do not see "USB Mass Storage support" config options due
to disabled SCSI ;)
I'd suggest a comment, when SCSI is disabled, that USB Mass Storage is
disabled unless you select SCSI. I tried to cook up a simple patch but it
seems I don't know kbuild very well. The menu structure messed up after I did
it.
ciao, Marc
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 13:42 ` Russell King
2004-04-02 14:03 ` Marc-Christian Petersen
@ 2004-04-02 16:59 ` Greg KH
2004-04-02 17:16 ` Russell King
2004-04-02 19:29 ` Ricky Beam
2 siblings, 1 reply; 14+ messages in thread
From: Greg KH @ 2004-04-02 16:59 UTC (permalink / raw)
To: Olaf Zaplinski, linux-kernel
On Fri, Apr 02, 2004 at 02:42:17PM +0100, Russell King wrote:
> On Fri, Apr 02, 2004 at 02:21:40PM +0100, Sean Neakums wrote:
> > Olaf Zaplinski <o.zaplinski@broadnet-mediascape.de> writes:
> >
> > > I cannot disable SCSI completely in 2.6.4's 'menuconfig'.
> >
> > I believe that some kernel components require SCSI to be useful and so
> > force SCSI to be activated. One example that springs to mind is
> > usb-storage.
>
> usb-storage should depend on SCSI rather than forcing SCSI to be
> enabled.
No, this is the way it used to be, and it caused all kinds of problems
in the past. It was switched to use 'select' on purpose, and should
stay that way.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 16:59 ` Greg KH
@ 2004-04-02 17:16 ` Russell King
2004-04-02 17:56 ` Kevin P. Fleming
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Russell King @ 2004-04-02 17:16 UTC (permalink / raw)
To: Greg KH; +Cc: Olaf Zaplinski, linux-kernel
On Fri, Apr 02, 2004 at 08:59:41AM -0800, Greg KH wrote:
> No, this is the way it used to be, and it caused all kinds of problems
> in the past. It was switched to use 'select' on purpose, and should
> stay that way.
It's causing problems today by preventing people from being able to
de-select SCSI for no obvious reason.
It is far less intuitive to know you have to turn off USB_STORAGE
before you can turn off SCSI than to know that you have to turn on
SCSI before you can turn on USB_STORAGE.
If you wish to keep it this way, could we either have:
(a) a note in the SCSI help text to say that the option is forced
on by USB_STORAGE, so people know what to turn off.
or
(b) have kconfig tell you why you can't turn off the option.
Silently preventing options being turned off with no obvious reason
is a pretty major misfeature.
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/
2.6 Serial core
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 17:16 ` Russell King
@ 2004-04-02 17:56 ` Kevin P. Fleming
2004-04-02 18:14 ` Greg KH
2004-04-05 22:17 ` Bill Davidsen
2 siblings, 0 replies; 14+ messages in thread
From: Kevin P. Fleming @ 2004-04-02 17:56 UTC (permalink / raw)
To: Russell King; +Cc: Greg KH, Olaf Zaplinski, linux-kernel
Russell King wrote:
> (b) have kconfig tell you why you can't turn off the option.
>
> Silently preventing options being turned off with no obvious reason
> is a pretty major misfeature.
It's even worse than that; with USB_STORAGE enabled, CONFIG_SCSI doesn't
even show an option selection box, so it's not even obvious that it _is_
an option, rather than a comment.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 17:16 ` Russell King
2004-04-02 17:56 ` Kevin P. Fleming
@ 2004-04-02 18:14 ` Greg KH
2004-04-05 22:17 ` Bill Davidsen
2 siblings, 0 replies; 14+ messages in thread
From: Greg KH @ 2004-04-02 18:14 UTC (permalink / raw)
To: Olaf Zaplinski, linux-kernel
On Fri, Apr 02, 2004 at 06:16:30PM +0100, Russell King wrote:
> On Fri, Apr 02, 2004 at 08:59:41AM -0800, Greg KH wrote:
> > No, this is the way it used to be, and it caused all kinds of problems
> > in the past. It was switched to use 'select' on purpose, and should
> > stay that way.
>
> It's causing problems today by preventing people from being able to
> de-select SCSI for no obvious reason.
Ok, you get people complaining either way. So no matter what people
aren't happy :(
As Linus is the one who enabled this option for CONFIG_USB_STORAGE, I'm
going to rule that it should stay the way it currently is.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 13:42 ` Russell King
2004-04-02 14:03 ` Marc-Christian Petersen
2004-04-02 16:59 ` Greg KH
@ 2004-04-02 19:29 ` Ricky Beam
2 siblings, 0 replies; 14+ messages in thread
From: Ricky Beam @ 2004-04-02 19:29 UTC (permalink / raw)
To: Russell King; +Cc: Olaf Zaplinski, linux-kernel, Greg KH
On Fri, 2 Apr 2004, Russell King wrote:
>usb-storage should depend on SCSI rather than forcing SCSI to be
>enabled.
Actually, it should "require" SCSI, but the kernel configuration logic
does not support that.
>Using 'select' is all very well for the case where the target
>configuration symbol is not user selectable, but in the case that
>it is, it leads to the confusion shown above.
Indeed. "select" is very useful for enabling options that cannot otherwise
be enabled. However, it gets mis-applied in cases like this to address the
"stupid user" problem. (see above re: missing "require") In fact, the
only place I can forgive the use of select on user selectable options in
within the input layer options -- select is used to force a valid usable
configuration instead of letting someone compile a kernel without any
keyboard support, BUT, it's still user tunable if "embedded" is enabled.
--Ricky
(see also: http://bk.troz.com:14690/linux-2.6-bk/user=jfbeam/cset@1.1396
for additional SELECT removals.)
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-02 17:16 ` Russell King
2004-04-02 17:56 ` Kevin P. Fleming
2004-04-02 18:14 ` Greg KH
@ 2004-04-05 22:17 ` Bill Davidsen
2004-04-06 8:42 ` Russell King
2 siblings, 1 reply; 14+ messages in thread
From: Bill Davidsen @ 2004-04-05 22:17 UTC (permalink / raw)
To: linux-kernel
Russell King wrote:
> On Fri, Apr 02, 2004 at 08:59:41AM -0800, Greg KH wrote:
>
>>No, this is the way it used to be, and it caused all kinds of problems
>>in the past. It was switched to use 'select' on purpose, and should
>>stay that way.
>
>
> It's causing problems today by preventing people from being able to
> de-select SCSI for no obvious reason.
>
> It is far less intuitive to know you have to turn off USB_STORAGE
> before you can turn off SCSI than to know that you have to turn on
> SCSI before you can turn on USB_STORAGE.
Intuitive isn't the issue, if you can't figure out why you can't turn
off SCSI, you leave it on, which you need to make USB storage work. If
you're trying to make a small kernel you presumably would have turned
off USB if you didn't want it. The other way, if you can turn on USB w/o
SCSI, it won't work, and people thing Linux is broken.
The issue is that what we have works but it's not obvious why, vs.
doesn't work and also isn't obvious why. Thank you, work by default is
better.
>
> If you wish to keep it this way, could we either have:
>
> (a) a note in the SCSI help text to say that the option is forced
> on by USB_STORAGE, so people know what to turn off.
Chances are that most people wouldn't have USB on if they didn't want
it, but there's no downside to doing this.
>
> or
>
> (b) have kconfig tell you why you can't turn off the option.
I thought that was what (a) did.
>
> Silently preventing options being turned off with no obvious reason
> is a pretty major misfeature.
Compared to enabling USB storage with no hope of having it work? Adding
user info is desirable, but making it easy, or even possible, to build a
non-working config is a lot more of a problem. You haven't compiled on
a slow machine lately, forcing config combinations which work is a
benefit of kconfig.
If you want it broken you have to edit the config code. That's a good thing.
--
-bill davidsen (davidsen@tmr.com)
"The secret to procrastination is to put things off until the
last possible moment - but no longer" -me
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-05 22:17 ` Bill Davidsen
@ 2004-04-06 8:42 ` Russell King
2004-04-06 10:46 ` Marc-Christian Petersen
0 siblings, 1 reply; 14+ messages in thread
From: Russell King @ 2004-04-06 8:42 UTC (permalink / raw)
To: Bill Davidsen; +Cc: linux-kernel
On Mon, Apr 05, 2004 at 06:17:14PM -0400, Bill Davidsen wrote:
> Intuitive isn't the issue, if you can't figure out why you can't turn
> off SCSI, you leave it on, which you need to make USB storage work. If
> you're trying to make a small kernel you presumably would have turned
> off USB if you didn't want it. The other way, if you can turn on USB w/o
> SCSI, it won't work, and people thing Linux is broken.
When I hit it, I was trying to build a kernel for test purposes, so I
didn't want all the drivers turned on. I found I couldn't turn off
SCSI and continued anyway turning other things off. However, USB appears
_after_ SCSI, you can not go through the configuration logically to turn
off features. Moreover, you do not get any suggestion when attempting
to turn SCSI off that you need to turn off USB.
> Chances are that most people wouldn't have USB on if they didn't want
> it, but there's no downside to doing this.
The x86 default configuration has USB + USB Storage turned on. It makes
it _non-trivial_ to turn SCSI off unless you have prior knowledge that
you need to turn USB off before hand.
> > (b) have kconfig tell you why you can't turn off the option.
>
> I thought that was what (a) did.
No - the configuration system just doesn't let you turn SCSI off. No
complaint, no warning, no nothing. It just won't change the symbol.
> > Silently preventing options being turned off with no obvious reason
> > is a pretty major misfeature.
>
> Compared to enabling USB storage with no hope of having it work? Adding
> user info is desirable, but making it easy, or even possible, to build a
> non-working config is a lot more of a problem. You haven't compiled on
> a slow machine lately, forcing config combinations which work is a
> benefit of kconfig.
Umm, you're talking to an ARM developer who builds some kernels natively.
I suspect that your definition of "slow" is actually faster than my
definition of the same.
> If you want it broken you have to edit the config code. That's a good thing.
Read what I'm saying. *Silently* preventing options being turned off
with *no* *obvious* *reason* is a pretty major misfeature.
I hope the emphasis will highlight the problem more clearly.
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/
2.6 Serial core
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-06 8:42 ` Russell King
@ 2004-04-06 10:46 ` Marc-Christian Petersen
2004-04-06 11:03 ` Marc-Christian Petersen
0 siblings, 1 reply; 14+ messages in thread
From: Marc-Christian Petersen @ 2004-04-06 10:46 UTC (permalink / raw)
To: linux-kernel, linux-usb-devel, Greg Kroah-Hartman
Cc: Russell King, Bill Davidsen
[-- Attachment #1: Type: text/plain, Size: 1147 bytes --]
On Tuesday 06 April 2004 10:42, Russell King wrote:
Hi,
> > Intuitive isn't the issue, if you can't figure out why you can't turn
> > off SCSI, you leave it on, which you need to make USB storage work. If
> > you're trying to make a small kernel you presumably would have turned
> > off USB if you didn't want it. The other way, if you can turn on USB w/o
> > SCSI, it won't work, and people thing Linux is broken.
> When I hit it, I was trying to build a kernel for test purposes, so I
> didn't want all the drivers turned on. I found I couldn't turn off
> SCSI and continued anyway turning other things off. However, USB appears
> _after_ SCSI, you can not go through the configuration logically to turn
> off features. Moreover, you do not get any suggestion when attempting
> to turn SCSI off that you need to turn off USB.
may I propose the following two patches?
01_menu-Kconfig-cleanups-08-usb-menu-indent-fix.patch
Fix up indents in the USB Input menu
02_menu-Kconfig-cleanups-09-USB-vs-SCSI-fix.patch
Fix SCSI dependency for USB-Storage support.
- Rip out "select SCSI"
- Make a comment when SCSI is not selected
ciao, Marc
[-- Attachment #2: 01_menu-Kconfig-cleanups-08-usb-menu-indent-fix.patch --]
[-- Type: text/x-diff, Size: 2122 bytes --]
diff -Naurp linux-2.6.4-rc1/drivers/usb/input/Kconfig linux-2.6.4-rc1-modified/drivers/usb/input/Kconfig
--- linux-2.6.4-rc1/drivers/usb/input/Kconfig 2004-03-07 20:51:35.000000000 +0100
+++ linux-2.6.4-rc1-modified/drivers/usb/input/Kconfig 2004-03-07 21:00:15.000000000 +0100
@@ -29,7 +29,7 @@ comment "Input core support is needed fo
config USB_HIDINPUT
bool "HID input layer support"
default y
- depends on INPUT && USB_HID
+ depends on INPUT && USB && USB_HID
help
Say Y here if you want to use a USB keyboard, mouse or joystick,
or any other HID input device. You also need "Input core support",
@@ -39,7 +39,7 @@ config USB_HIDINPUT
config HID_FF
bool "Force feedback support (EXPERIMENTAL)"
- depends on USB_HIDINPUT && EXPERIMENTAL
+ depends on USB && USB_HIDINPUT && EXPERIMENTAL
help
Say Y here is you want force feedback support for a few HID devices.
See below for a list of supported devices.
@@ -51,7 +51,7 @@ config HID_FF
config HID_PID
bool "PID Devices (Microsoft Sidewinder Force Feedback 2)"
- depends on HID_FF
+ depends on USB && HID_FF
help
Say Y here if you have a PID-compliant joystick and wish to enable force
feedback for it. The Microsoft Sidewinder Force Feedback 2 is one such
@@ -59,7 +59,7 @@ config HID_PID
config LOGITECH_FF
bool "Logitech WingMan *3D support"
- depends on HID_FF
+ depends on USB && HID_FF
help
Say Y here if you have one of these devices:
- Logitech WingMan Cordless RumblePad
@@ -70,7 +70,7 @@ config LOGITECH_FF
config THRUSTMASTER_FF
bool "ThrustMaster FireStorm Dual Power 2 support (EXPERIMENTAL)"
- depends on HID_FF && EXPERIMENTAL
+ depends on USB && HID_FF && EXPERIMENTAL
help
Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
and want to enable force feedback support for it.
@@ -79,7 +79,7 @@ config THRUSTMASTER_FF
config USB_HIDDEV
bool "/dev/hiddev raw HID device support"
- depends on USB_HID
+ depends on USB && USB_HID
help
Say Y here if you want to support HID devices (from the USB
specification standpoint) that aren't strictly user interface
[-- Attachment #3: 02_menu-Kconfig-cleanups-09-USB-vs-SCSI-fix.patch --]
[-- Type: text/x-diff, Size: 915 bytes --]
diff -Naurp linux-2.6.4-wolk2.4-fullkernel/drivers/usb/storage/Kconfig linux-2.6.4-wolk2.4-USB-stuff/drivers/usb/storage/Kconfig
--- linux-2.6.4-wolk2.4-fullkernel/drivers/usb/storage/Kconfig 2004-04-05 17:10:21.000000000 +0200
+++ linux-2.6.4-wolk2.4-USB-stuff/drivers/usb/storage/Kconfig 2004-04-06 12:30:55.000000000 +0200
@@ -2,10 +2,9 @@
# USB Storage driver configuration
#
-config USB_STORAGE
+menuconfig USB_STORAGE
tristate "USB Mass Storage support"
- depends on USB
- select SCSI
+ depends on USB && SCSI
---help---
Say Y here if you want to connect USB mass storage devices to your
computer's USB port. This is the driver you need for USB floppy drives,
@@ -89,3 +88,5 @@ config USB_STORAGE_JUMPSHOT
Say Y here to include additional code to support the Lexar Jumpshot
USB CompactFlash reader.
+comment "SCSI support is needed for USB Storage support"
+ depends on USB && !SCSI
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: 2.6.4: disabling SCSI support not possible
2004-04-06 10:46 ` Marc-Christian Petersen
@ 2004-04-06 11:03 ` Marc-Christian Petersen
0 siblings, 0 replies; 14+ messages in thread
From: Marc-Christian Petersen @ 2004-04-06 11:03 UTC (permalink / raw)
To: linux-kernel
Cc: linux-usb-devel, Greg Kroah-Hartman, Russell King, Bill Davidsen
[-- Attachment #1: Type: text/plain, Size: 308 bytes --]
On Tuesday 06 April 2004 12:46, Marc-Christian Petersen wrote:
Hi again,
> 02_menu-Kconfig-cleanups-09-USB-vs-SCSI-fix.patch
> Fix SCSI dependency for USB-Storage support.
> - Rip out "select SCSI"
> - Make a comment when SCSI is not selected
grmpf, change !SCSI to SCSI=n. Again attached.
ciao, Marc
[-- Attachment #2: 02_menu-Kconfig-cleanups-09-USB-vs-SCSI-fix.patch --]
[-- Type: text/x-diff, Size: 916 bytes --]
diff -Naurp linux-2.6.4-wolk2.4-fullkernel/drivers/usb/storage/Kconfig linux-2.6.4-wolk2.4-USB-stuff/drivers/usb/storage/Kconfig
--- linux-2.6.4-wolk2.4-fullkernel/drivers/usb/storage/Kconfig 2004-04-05 17:10:21.000000000 +0200
+++ linux-2.6.4-wolk2.4-USB-stuff/drivers/usb/storage/Kconfig 2004-04-06 12:30:55.000000000 +0200
@@ -2,10 +2,9 @@
# USB Storage driver configuration
#
-config USB_STORAGE
+menuconfig USB_STORAGE
tristate "USB Mass Storage support"
- depends on USB
- select SCSI
+ depends on USB && SCSI
---help---
Say Y here if you want to connect USB mass storage devices to your
computer's USB port. This is the driver you need for USB floppy drives,
@@ -89,3 +88,5 @@ config USB_STORAGE_JUMPSHOT
Say Y here to include additional code to support the Lexar Jumpshot
USB CompactFlash reader.
+comment "SCSI support is needed for USB Storage support"
+ depends on USB && SCSI=n
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2004-04-06 11:12 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-02 13:09 2.6.4: disabling SCSI support not possible Olaf Zaplinski
2004-04-02 13:18 ` Grzegorz Kulewski
2004-04-02 13:21 ` Sean Neakums
2004-04-02 13:42 ` Russell King
2004-04-02 14:03 ` Marc-Christian Petersen
2004-04-02 16:59 ` Greg KH
2004-04-02 17:16 ` Russell King
2004-04-02 17:56 ` Kevin P. Fleming
2004-04-02 18:14 ` Greg KH
2004-04-05 22:17 ` Bill Davidsen
2004-04-06 8:42 ` Russell King
2004-04-06 10:46 ` Marc-Christian Petersen
2004-04-06 11:03 ` Marc-Christian Petersen
2004-04-02 19:29 ` Ricky Beam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox