cf1c12bdba
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter q in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
579 B
Plaintext
31 lines
579 B
Plaintext
menu "Mouse drivers"
|
|
|
|
config BR2_PACKAGE_QT_MOUSE_PC
|
|
bool "pc"
|
|
|
|
config BR2_PACKAGE_QT_MOUSE_LINUXTP
|
|
bool "linuxtp"
|
|
|
|
config BR2_PACKAGE_QT_MOUSE_LINUXINPUT
|
|
bool "linux input"
|
|
|
|
config BR2_PACKAGE_QT_MOUSE_TSLIB
|
|
bool "tslib"
|
|
depends on !BR2_STATIC_LIBS # tslib
|
|
select BR2_PACKAGE_TSLIB
|
|
|
|
comment "tslib support needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_QT_MOUSE_QVFB
|
|
bool "qvfb"
|
|
|
|
comment "Mouse Options"
|
|
|
|
config BR2_PACKAGE_QT_MOUSE_NO_QWS_CURSOR
|
|
bool "Hide the mouse cursor"
|
|
help
|
|
Do not show the mouse cursor in QWS.
|
|
|
|
endmenu
|