public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* make menuconfig: where's USB Mass Storage?
@ 2001-01-05  4:42 Frédéric L . W . Meunier
  2001-01-05  4:51 ` Chris Wedgwood
  2001-01-05  4:53 ` Keith Owens
  0 siblings, 2 replies; 4+ messages in thread
From: Frédéric L . W . Meunier @ 2001-01-05  4:42 UTC (permalink / raw)
  To: linux-kernel

Is this just me? Configuring 2.4.0 with make menuconfig with
CONFIG_EXPERIMENTAL=y I get no prompt for USB Mass Storage,
but the .config is saved with # CONFIG_USB_STORAGE is not set

I have the following:

#
# USB support
#
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
CONFIG_USB_UHCI_ALT=m
# CONFIG_USB_OHCI is not set
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH is not set
# CONFIG_USB_STORAGE is not set
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
# CONFIG_USB_DC2XX is not set
# CONFIG_USB_MDC800 is not set
CONFIG_USB_SCANNER=m
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_OV511 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_PLUSB is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_NET1080 is not set
# CONFIG_USB_USS720 is not set

#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
# CONFIG_USB_RIO500 is not set

I checked a lot of times, and there's no such option here.

< >   OHCI (Compaq, iMacs, OPTi, SiS, ALi, ...) support
--- USB Device Class drivers
< >   USB Audio support
< >   USB Bluetooth support (EXPERIMENTAL)
< >   USB Modem (CDC ACM) support

-- 
0@pervalidus.{net, {dyndns.}org} Tel: 55-21-717-2399 (Niterói-RJ BR)
-
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] 4+ messages in thread

* Re: make menuconfig: where's USB Mass Storage?
  2001-01-05  4:42 make menuconfig: where's USB Mass Storage? Frédéric L . W . Meunier
@ 2001-01-05  4:51 ` Chris Wedgwood
  2001-01-05  4:53 ` Keith Owens
  1 sibling, 0 replies; 4+ messages in thread
From: Chris Wedgwood @ 2001-01-05  4:51 UTC (permalink / raw)
  To: Frédéric L . W . Meunier; +Cc: linux-kernel

On Fri, Jan 05, 2001 at 02:42:11AM -0200, Frédéric L . W . Meunier wrote:

    Is this just me? Configuring 2.4.0 with make menuconfig with
    CONFIG_EXPERIMENTAL=y I get no prompt for USB Mass Storage, but
    the .config is saved with # CONFIG_USB_STORAGE is not set

Enable SCSI and scsi disks (modular is fine).


  --cw
-
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] 4+ messages in thread

* Re: make menuconfig: where's USB Mass Storage?
  2001-01-05  4:42 make menuconfig: where's USB Mass Storage? Frédéric L . W . Meunier
  2001-01-05  4:51 ` Chris Wedgwood
@ 2001-01-05  4:53 ` Keith Owens
  2001-01-05  5:01   ` Johannes Erdfelt
  1 sibling, 1 reply; 4+ messages in thread
From: Keith Owens @ 2001-01-05  4:53 UTC (permalink / raw)
  To: Fr d ric L. W. Meunier; +Cc: linux-kernel

On Fri, 5 Jan 2001 02:42:11 -0200, 
Fr d ric L . W . Meunier <0@pervalidus.net> wrote:
>Is this just me? Configuring 2.4.0 with make menuconfig with
>CONFIG_EXPERIMENTAL=y I get no prompt for USB Mass Storage,
>but the .config is saved with # CONFIG_USB_STORAGE is not set

CONFIG_USB_STORAGE is only available if you have both USB and SCSI
selected.  Is that the correct combination?  I have no idea, but that
is what is coded.

-
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] 4+ messages in thread

* Re: make menuconfig: where's USB Mass Storage?
  2001-01-05  4:53 ` Keith Owens
@ 2001-01-05  5:01   ` Johannes Erdfelt
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Erdfelt @ 2001-01-05  5:01 UTC (permalink / raw)
  To: Keith Owens; +Cc: Fr d ric L. W. Meunier, linux-kernel

On Fri, Jan 05, 2001, Keith Owens <kaos@ocs.com.au> wrote:
> On Fri, 5 Jan 2001 02:42:11 -0200, 
> Fr d ric L . W . Meunier <0@pervalidus.net> wrote:
> >Is this just me? Configuring 2.4.0 with make menuconfig with
> >CONFIG_EXPERIMENTAL=y I get no prompt for USB Mass Storage,
> >but the .config is saved with # CONFIG_USB_STORAGE is not set
> 
> CONFIG_USB_STORAGE is only available if you have both USB and SCSI
> selected.  Is that the correct combination?  I have no idea, but that
> is what is coded.

Yup, obviously USB is required, but USB storage devices are all SCSI
(atleast the class devices are), so we need the SCSI layer as well.

JE

-
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] 4+ messages in thread

end of thread, other threads:[~2001-01-05  5:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-01-05  4:42 make menuconfig: where's USB Mass Storage? Frédéric L . W . Meunier
2001-01-05  4:51 ` Chris Wedgwood
2001-01-05  4:53 ` Keith Owens
2001-01-05  5:01   ` Johannes Erdfelt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox