directfb: add option for linuxinput input driver
This commit is contained in:
parent
f6d14f30b2
commit
cfca28f0a5
@ -45,6 +45,11 @@ config BR2_PACKAGE_DIRECTFB_UNICHROME
|
||||
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
|
||||
depends on BR2_PACKAGE_DIRECTFB
|
||||
|
||||
config BR2_PACKAGE_DIRECTFB_KEYBOARD
|
||||
bool "compile keyboard input driver"
|
||||
default y
|
||||
|
@ -56,6 +56,9 @@ DIRECTFB_GFX:=$(subst $(space),$(comma),$(strip $(DIRECTFB_GFX)))
|
||||
endif
|
||||
|
||||
DIRECTFB_INPUT:=
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_LINUXINPUT),y)
|
||||
DIRECTFB_INPUT+= linuxinput
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_DIRECTFB_KEYBOARD),y)
|
||||
DIRECTFB_INPUT+= keyboard
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user