mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
qt: add selection for keyboard drivers
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
1752420807
commit
f31bbf9e68
@ -259,6 +259,7 @@ source "package/qt/Config.sql.in"
|
|||||||
if BR2_PACKAGE_QT_GUI_MODULE
|
if BR2_PACKAGE_QT_GUI_MODULE
|
||||||
source "package/qt/Config.gfx.in"
|
source "package/qt/Config.gfx.in"
|
||||||
source "package/qt/Config.mouse.in"
|
source "package/qt/Config.mouse.in"
|
||||||
|
source "package/qt/Config.keyboard.in"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config BR2_PACKAGE_QT_PHONON
|
config BR2_PACKAGE_QT_PHONON
|
||||||
|
21
package/qt/Config.keyboard.in
Normal file
21
package/qt/Config.keyboard.in
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
menu "Keyboard drivers"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_KEYBOARD_TTY
|
||||||
|
bool "tty"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_KEYBOARD_USB
|
||||||
|
bool "usb"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_KEYBOARD_SL5000
|
||||||
|
bool "sl5000"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_KEYBOARD_YOPY
|
||||||
|
bool "yopy"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_KEYBOARD_VR41XX
|
||||||
|
bool "vr41xx"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_KEYBOARD_QVFB
|
||||||
|
bool "qvfb"
|
||||||
|
|
||||||
|
endmenu
|
@ -147,6 +147,38 @@ else
|
|||||||
QT_CONFIGURE += -no-mouse-qvfb
|
QT_CONFIGURE += -no-mouse-qvfb
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
### Keyboard drivers
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_TTY),y)
|
||||||
|
QT_CONFIGURE += -qt-kbd-tty
|
||||||
|
else
|
||||||
|
QT_CONFIGURE += -no-kbd-tty
|
||||||
|
endif
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_USB),y)
|
||||||
|
QT_CONFIGURE += -qt-kbd-usb
|
||||||
|
else
|
||||||
|
QT_CONFIGURE += -no-kbd-usb
|
||||||
|
endif
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_SL5000),y)
|
||||||
|
QT_CONFIGURE += -qt-kbd-sl5000
|
||||||
|
else
|
||||||
|
QT_CONFIGURE += -no-kbd-sl5000
|
||||||
|
endif
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_YOPY),y)
|
||||||
|
QT_CONFIGURE += -qt-kbd-yopy
|
||||||
|
else
|
||||||
|
QT_CONFIGURE += -no-kbd-yopy
|
||||||
|
endif
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_VR41XX),y)
|
||||||
|
QT_CONFIGURE += -qt-kbd-vr41xx
|
||||||
|
else
|
||||||
|
QT_CONFIGURE += -no-kbd-vr41xx
|
||||||
|
endif
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_QVFB),y)
|
||||||
|
QT_CONFIGURE += -qt-kbd-qvfb
|
||||||
|
else
|
||||||
|
QT_CONFIGURE += -no-kbd-qvfb
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_QT_DEBUG),y)
|
ifeq ($(BR2_PACKAGE_QT_DEBUG),y)
|
||||||
QT_CONFIGURE+= -debug
|
QT_CONFIGURE+= -debug
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user