2007-08-10 21:07:51 +02:00
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER
|
|
|
|
bool "xorg-server"
|
2013-01-06 12:29:17 +01:00
|
|
|
select BR2_PACKAGE_LIBDRM if BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
|
xserver_xorg-server: provide more options for SHA1 library
Until now, the X.org server was forcefully selecting OpenSSL, just to
have a SHA1 implementation. However, in fact, the X.org server is
capable of using a SHA1 implementation from multiple libraries:
OpenSSL, libgcrypt and libsha1 amongst others.
So, this patch changes the X.org server package so that we use the
SHA1 functions from OpenSSL is OpenSSL is already available, or the
SHA1 functions from libgcrypt is libgcrypt is already available, or if
neither OpenSSL nor libgcrypt are enabled in the configuration, we
select the much smaller libsha1, that has been specifically written to
fulfill the X.org server requirements.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-01-06 12:29:24 +01:00
|
|
|
# We need a SHA1 implementation. If either openssl or
|
|
|
|
# libgcrypt are already part of the build, we'll use one of
|
|
|
|
# them, otherwise, use the small libsha1 library.
|
|
|
|
select BR2_PACKAGE_LIBSHA1 if (!BR2_PACKAGE_OPENSSL && !BR2_PACKAGE_LIBGCRYPT)
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_PIXMAN
|
2009-03-13 20:46:03 +01:00
|
|
|
select BR2_PACKAGE_XFONT_FONT_ALIAS if !BR2_PACKAGE_XSERVER_XORG_SERVER_BUILTIN_FONTS
|
|
|
|
select BR2_PACKAGE_XFONT_FONT_MISC_MISC if !BR2_PACKAGE_XSERVER_XORG_SERVER_BUILTIN_FONTS
|
|
|
|
select BR2_PACKAGE_XFONT_FONT_CURSOR_MISC if !BR2_PACKAGE_XSERVER_XORG_SERVER_BUILTIN_FONTS
|
2013-01-06 12:29:17 +01:00
|
|
|
select BR2_PACKAGE_XLIB_LIBPCIACCESS if BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXAU
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBXCURSOR
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXDAMAGE
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBXDMCP
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXEXT
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXFIXES
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBXFONT
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXFT
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBXI
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBXINERAMA
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXRANDR
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XLIB_LIBXRENDER
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXRES
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXXF86VM
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXKBFILE
|
|
|
|
select BR2_PACKAGE_XLIB_XTRANS
|
|
|
|
select BR2_PACKAGE_XDATA_XBITMAPS
|
|
|
|
select BR2_PACKAGE_XPROTO_BIGREQSPROTO
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_COMPOSITEPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_DAMAGEPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_FIXESPROTO
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_FONTSPROTO
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_GLPROTO
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_INPUTPROTO
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_KBPROTO
|
2014-03-29 21:56:07 +01:00
|
|
|
select BR2_PACKAGE_XPROTO_PRESENTPROTO
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_RANDRPROTO
|
2007-08-10 21:07:51 +02:00
|
|
|
select BR2_PACKAGE_XPROTO_RENDERPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_RESOURCEPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_VIDEOPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_XCMISCPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_XEXTPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_XF86DGAPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
|
|
|
|
select BR2_PACKAGE_XPROTO_XPROTO
|
2010-04-14 19:06:40 +02:00
|
|
|
select BR2_PACKAGE_XUTIL_UTIL_MACROS
|
2010-07-22 16:22:32 +02:00
|
|
|
select BR2_PACKAGE_XKEYBOARD_CONFIG
|
2009-05-19 20:10:45 +02:00
|
|
|
depends on !BR2_avr32
|
2007-08-10 21:07:51 +02:00
|
|
|
help
|
2012-09-22 15:18:27 +02:00
|
|
|
X.Org X server
|
|
|
|
|
|
|
|
http://xorg.freedesktop.org
|
2008-09-10 15:16:23 +02:00
|
|
|
|
2009-05-19 20:10:45 +02:00
|
|
|
comment "xorg-xserver is BROKEN on AVR32"
|
|
|
|
depends on BR2_avr32
|
|
|
|
|
2012-04-10 10:24:07 +02:00
|
|
|
if BR2_PACKAGE_XSERVER_XORG_SERVER
|
|
|
|
|
2013-01-06 12:29:13 +01:00
|
|
|
choice
|
|
|
|
prompt "X Window System server type"
|
2013-01-06 12:29:17 +01:00
|
|
|
default BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
|
2013-01-06 12:29:13 +01:00
|
|
|
help
|
|
|
|
Select the X Window System server to use
|
|
|
|
|
2013-01-06 12:29:17 +01:00
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
|
2013-01-06 12:29:13 +01:00
|
|
|
bool "Modular X.org"
|
|
|
|
depends on BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP
|
2013-01-06 12:29:19 +01:00
|
|
|
help
|
|
|
|
This variant of the X.org server is the full-blown variant,
|
|
|
|
as used by desktop GNU/Linux distributions. The drivers (for
|
|
|
|
input and graphics) are built separately from the X.org
|
|
|
|
server (see the xdriver* packages).
|
2013-01-06 12:29:13 +01:00
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "Modular X.org needs a toolchain w/ largefile, C++"
|
2013-01-06 12:29:13 +01:00
|
|
|
depends on !(BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP)
|
|
|
|
|
2013-01-06 12:29:17 +01:00
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
|
2013-01-06 12:29:16 +01:00
|
|
|
bool "KDrive / TinyX"
|
2013-01-06 12:29:19 +01:00
|
|
|
help
|
|
|
|
This variant of the X.org server is a lightweight version
|
|
|
|
intended for embedded systems. The drivers (for input and
|
|
|
|
graphics) are built into the server. It is generally used
|
|
|
|
directly on top of the Linux framebuffer without DRM or
|
|
|
|
video card specific drivers.
|
2013-01-06 12:29:13 +01:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2008-09-10 15:16:23 +02:00
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_NULL_CURSOR
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "Null root cursor"
|
|
|
|
help
|
|
|
|
Don't display root cursor.
|
2009-03-13 20:46:03 +01:00
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "Enable AIGLX Extension"
|
|
|
|
help
|
|
|
|
Enable/Use AIGLX extension.
|
2012-04-10 10:24:07 +02:00
|
|
|
|
2013-01-06 12:29:18 +01:00
|
|
|
if BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV
|
|
|
|
bool "Enable KDrive/TinyX evdev input driver"
|
|
|
|
help
|
|
|
|
Enable evdev input driver in KDrive. This allows KDrive to
|
|
|
|
use input devices that are integrated in the Linux input
|
|
|
|
subsystem, i.e have a /dev/input/eventX device file. This is
|
|
|
|
most likely the input driver you want to use.
|
|
|
|
|
|
|
|
This driver can then be enabled by running the X server
|
|
|
|
using:
|
|
|
|
|
|
|
|
Xfbdev -keybd evdev,,device=/dev/input/eventX -mouse evdev,,device=/dev/input/eventY.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD
|
|
|
|
bool "Enable KDrive/TinyX kbd input driver"
|
|
|
|
help
|
|
|
|
Enable kbd input driver in KDrive. It uses the console
|
|
|
|
keyboard as input device.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE
|
|
|
|
bool "Enable KDrive/TinyX mouse input driver"
|
|
|
|
help
|
|
|
|
Enable mouse input driver in KDrive. It supports PS/2 mice
|
|
|
|
and serial port mice.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-04-10 10:24:07 +02:00
|
|
|
comment "Optional Servers"
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_XORG_SERVER_XVFB
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "Xvfb server"
|
|
|
|
help
|
|
|
|
Virtual frame buffer X server.
|
2012-04-10 10:24:07 +02:00
|
|
|
|
|
|
|
endif
|