a3a4b092c8
This version changed the (optional) dependency from sdl and sdl-config to sdl2 and pkg-config. Therefore, the patch 0002-sdl-config.patch has been dropped and the dependency has been changed to BR2_PACKAGE_SDL2. Since SDL2 (required to build force-feedback utilities) requires shared library support to compile, a dependency on !BR2_STATIC_LIBS was added to the configuration option that enables force-feedback utilities. Signed-off-by: Koen Martens <gmc@sonologic.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_LINUXCONSOLETOOLS
|
|
bool "linuxconsoletools"
|
|
select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH if \
|
|
!BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK && \
|
|
!BR2_PACKAGE_LINUXCONSOLETOOLS_FORCEFEEDBACK
|
|
help
|
|
Linuxconsoletools contains the inputattach utility
|
|
to attach legacy serial devices to the Linux kernel
|
|
input layer and joystick utilities to calibrate and
|
|
test joysticks and joypads.
|
|
|
|
http://sf.net/projects/linuxconsole/
|
|
|
|
if BR2_PACKAGE_LINUXCONSOLETOOLS
|
|
|
|
config BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
|
|
bool "inputattach"
|
|
default y
|
|
help
|
|
The inputattach utility attaches legacy serial devices
|
|
to the Linux kernel input layer.
|
|
|
|
config BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
|
|
bool "joystick utilities"
|
|
help
|
|
Joystick utilities (jstest, jscal, jscal-store,
|
|
jscal-restore, evdev-joystick).
|
|
|
|
config BR2_PACKAGE_LINUXCONSOLETOOLS_FORCEFEEDBACK
|
|
bool "force-feedback utilities"
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_SDL2
|
|
help
|
|
Build force-feedback driver utilities (fftest,
|
|
ffmvforce, ffset, ffcfstress).
|
|
|
|
comment "force-feedback utilities need a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
endif
|