Kconfig 1.5 KB

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