diff options
author | Thomas Winischhofer <thomas@winischhofer.net> | 2005-08-29 11:01:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-12 15:23:38 -0400 |
commit | 1bbb4f2035d94d86e52e9b5341c142dcb39bb879 (patch) | |
tree | e18f11ede42f0876bdf9bcf54881e5ef4f6bbfe0 /drivers/video | |
parent | 80908309ce44677a07763e24e6ec9371cfa3ab5f (diff) |
[PATCH] USB: sisusb[vga] update
here is a new and extended version of the sisusbvga (previously: sisusb)
driver. The patch is against 2.6.13 and updates the driver to version 0.0.8.
Additions include complete VGA/EGA text console support and a build-in
display mode infrastructure for userland applications that don't know
about the graphics internals.
Fixes include some BE/LE issues and a get/put_dev bug in the previous
version.
Other changes include a change of the module name from "sisusb" to
"sisusbvga". The previous one was too generic IMHO.
Please note that the patch also affects the Makefile in
drivers/video/console as the driver requires the VGA 8x16 font in case
the text console part is selected.
Heavily tested, as usual. Please apply.
One thing though: I already prepared for removal of the "mode" field and
the changed "name" field in the usb_class_driver structure. This will
perhaps need some refinement depending on whether you/Linus merge the
respective core changes before or after 2.6.14.
Signed-off-by: Thomas Winischhofer <thomas@winischhofer.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/console/Kconfig | 2 | ||||
-rw-r--r-- | drivers/video/console/Makefile | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig index 5fe182d6e4ab..eb83a7874c71 100644 --- a/drivers/video/console/Kconfig +++ b/drivers/video/console/Kconfig | |||
@@ -137,7 +137,7 @@ config FONT_8x8 | |||
137 | 137 | ||
138 | config FONT_8x16 | 138 | config FONT_8x16 |
139 | bool "VGA 8x16 font" if FONTS | 139 | bool "VGA 8x16 font" if FONTS |
140 | depends on FRAMEBUFFER_CONSOLE || SGI_NEWPORT_CONSOLE=y | 140 | depends on FRAMEBUFFER_CONSOLE || SGI_NEWPORT_CONSOLE=y || USB_SISUSBVGA_CON |
141 | default y if !SPARC32 && !SPARC64 && !FONTS | 141 | default y if !SPARC32 && !SPARC64 && !FONTS |
142 | help | 142 | help |
143 | This is the "high resolution" font for the VGA frame buffer (the one | 143 | This is the "high resolution" font for the VGA frame buffer (the one |
diff --git a/drivers/video/console/Makefile b/drivers/video/console/Makefile index b562f6bb9d31..42c7b8dcd220 100644 --- a/drivers/video/console/Makefile +++ b/drivers/video/console/Makefile | |||
@@ -33,6 +33,10 @@ endif | |||
33 | 33 | ||
34 | obj-$(CONFIG_FB_STI) += sticore.o font.o | 34 | obj-$(CONFIG_FB_STI) += sticore.o font.o |
35 | 35 | ||
36 | ifeq ($(CONFIG_USB_SISUSBVGA_CON),y) | ||
37 | obj-$(CONFIG_USB_SISUSBVGA) += font.o | ||
38 | endif | ||
39 | |||
36 | # Targets that kbuild needs to know about | 40 | # Targets that kbuild needs to know about |
37 | targets := promcon_tbl.c | 41 | targets := promcon_tbl.c |
38 | 42 | ||