Add i830 graphics driver to DirectFB

Signed-off-by: Ormund Williams <ormundw@panix.com>[A
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Ormund Williams 2009-09-23 21:13:52 -04:00 committed by Peter Korsgaard
parent 04bef3eb55
commit 1f09b42f50
2 changed files with 8 additions and 0 deletions

View File

@ -61,6 +61,11 @@ config BR2_PACKAGE_DIRECTFB_UNICHROME
depends on BR2_PACKAGE_DIRECTFB
depends on BR2_i386 || BR2_x86_64
config BR2_PACKAGE_DIRECTFB_I830
bool "compile i830 graphics driver"
depends on BR2_PACKAGE_DIRECTFB
depends on BR2_i386 || BR2_x86_64
config BR2_PACKAGE_DIRECTFB_LINUXINPUT
bool "compile /dev/input/eventX input driver"
default y

View File

@ -63,6 +63,9 @@ endif
ifeq ($(BR2_PACKAGE_DIRECTFB_UNICHROME),y)
DIRECTFB_GFX+= unichrome
endif
ifeq ($(BR2_PACKAGE_DIRECTFB_I830),y)
DIRECTFB_GFX+= i830
endif
ifeq ($(DIRECTFB_GFX),)
DIRECTFB_GFX:=none
else