Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. config USB_SISUSBVGA
  2. tristate "USB 2.0 SVGA dongle support (Net2280/SiS315)"
  3. depends on USB && (USB_MUSB_HDRC || USB_EHCI_HCD)
  4. ---help---
  5. Say Y here if you intend to attach a USB2VGA dongle based on a
  6. Net2280 and a SiS315 chip.
  7. Note that this device requires a USB 2.0 host controller. It will not
  8. work with USB 1.x controllers.
  9. To compile this driver as a module, choose M here; the module will be
  10. called sisusbvga. If unsure, say N.
  11. config USB_SISUSBVGA_CON
  12. bool "Text console and mode switching support" if USB_SISUSBVGA
  13. depends on VT
  14. select FONT_8x16
  15. ---help---
  16. Say Y here if you want a VGA text console via the USB dongle or
  17. want to support userland applications that utilize the driver's
  18. display mode switching capabilities.
  19. Note that this console supports VGA/EGA text mode only.
  20. By default, the console part of the driver will not kick in when
  21. the driver is initialized. If you want the driver to take over
  22. one or more of the consoles, you need to specify the number of
  23. the first and last consoles (starting at 1) as driver parameters.
  24. For example, if the driver is compiled as a module:
  25. modprobe sisusbvga first=1 last=5
  26. If you use hotplug, add this to your modutils config files with
  27. the "options" keyword, such as eg.
  28. options sisusbvga first=1 last=5
  29. If the driver is compiled into the kernel image, the parameters
  30. must be given in the kernel command like, such as
  31. sisusbvga.first=1 sisusbvga.last=5