Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
#
# USB device configuration
#
# NOTE NOTE NOTE! This is still considered extremely experimental.
# Right now hubs, mice and keyboards work - at least with UHCI.
# But that may be more a lucky coincidence than anything else..
#
mainmenu_option next_comment
comment 'USB drivers - not for the faint of heart'

tristate 'Support for USB (EXPERIMENTAL!)' CONFIG_USB
if [ ! "$CONFIG_USB" = "n" ]; then
  dep_tristate 'UHCI (intel PIIX4 and others) support' CONFIG_USB_UHCI \
	$CONFIG_USB
    dep_tristate 'OHCI (compaq and some others) support' CONFIG_USB_OHCI \
	$CONFIG_USB

  if [ "$CONFIG_USB_OHCI" != "n" ]; then
     bool '  Enable tons of OHCI debugging output' CONFIG_USB_OHCI_DEBUG
  fi
  dep_tristate 'OHCI-HCD (other OHCI opt. Virt. Root Hub) support' \
		CONFIG_USB_OHCI_HCD $CONFIG_USB
  if [ "$CONFIG_USB_OHCI_HCD" != "n" ]; then
     	bool '  OHCI-HCD Virtual Root Hub' CONFIG_USB_OHCI_VROOTHUB
  fi

  dep_tristate 'USB hub support' CONFIG_USB_HUB $CONFIG_USB
  dep_tristate 'USB mouse support' CONFIG_USB_MOUSE $CONFIG_USB
  dep_tristate 'USB keyboard support' CONFIG_USB_KBD $CONFIG_USB
  dep_tristate 'USB audio parsing support' CONFIG_USB_AUDIO $CONFIG_USB
  dep_tristate 'USB Abstract Control Model support' CONFIG_USB_ACM $CONFIG_USB
  dep_tristate 'USB Printer support' CONFIG_USB_PRINTER $CONFIG_USB
  dep_tristate 'USB SCSI Support' CONFIG_USB_SCSI $CONFIG_USB
  if [ "$CONFIG_USB_SCSI" != "n" ]; then
	  dep_tristate '  USB SCSI verbose debug' CONFIG_USB_SCSI_DEBUG $CONFIG_USB_SCSI
  fi
fi

endmenu