diff options
author | Simon Glass <sjg@chromium.org> | 2014-12-29 19:32:28 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-01-23 17:24:16 -0700 |
commit | 6b1ba984507039a893b14c2dec3c7b1edbc8413d (patch) | |
tree | 7fc7cbc4596c8b0a386b4fb5eca6ab6650bc6886 /drivers/video/Makefile | |
parent | c5caba03665b0491832ca4c38209d71ff28bf593 (diff) | |
download | u-boot-imx-6b1ba984507039a893b14c2dec3c7b1edbc8413d.zip u-boot-imx-6b1ba984507039a893b14c2dec3c7b1edbc8413d.tar.gz u-boot-imx-6b1ba984507039a893b14c2dec3c7b1edbc8413d.tar.bz2 |
x86: Add a VESA video driver
Add a driver intended to cope with any VESA-compatible x86 graphics
adapter. It will not support ROMs which use OpenFirmware (Forth) since
there is no support for that in U-Boot. This means that MAC OS cards
will not work.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/Makefile')
-rw-r--r-- | drivers/video/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/Makefile b/drivers/video/Makefile index c3fcf45..9f3c8bb 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile @@ -44,6 +44,7 @@ obj-$(CONFIG_VIDEO_SMI_LYNXEM) += smiLynxEM.o videomodes.o obj-$(CONFIG_VIDEO_SUNXI) += sunxi_display.o videomodes.o obj-$(CONFIG_VIDEO_TEGRA) += tegra.o obj-$(CONFIG_VIDEO_VCXK) += bus_vcxk.o +obj-$(CONFIG_VIDEO_VESA) += vesa_fb.o obj-$(CONFIG_VIDEO_X86) += x86_fb.o obj-$(CONFIG_FORMIKE) += formike.o obj-$(CONFIG_AM335X_LCD) += am335x-fb.o |