Commit 1f09b42f authored by Ormund Williams's avatar Ormund Williams Committed by Peter Korsgaard
Browse files

Add i830 graphics driver to DirectFB

parent 04bef3eb
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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
+3 −0
Original line number Diff line number Diff line
@@ -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