summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@gmail.com>2016-01-04 01:11:47 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-01-05 00:17:11 +0100
commit7358a7157f4996bf74a3ca93cb899f11a64985d0 (patch)
tree5a9cf2284ef71275233530399601851344473d7c
parentb42fbdf2ac728f82a29fb5ce4191abc82d05793d (diff)
downloadbuildroot-7358a7157f4996bf74a3ca93cb899f11a64985d0.tar.gz
buildroot-7358a7157f4996bf74a3ca93cb899f11a64985d0.zip
package/x11r7/xserver_xorg-server: reorder select/depends
>From [1]: "Even though the ordering has absolutely no consequences in Kconfig, it is not logical (when reading). It is more logical and far easier to understand when depends come first, followed by the selects." Also, the Config.in exemple in the manual suggest to use this coding style [2]. [1] http://lists.busybox.net/pipermail/buildroot/2015-October/142955.html [2] http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-config-in Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/x11r7/xserver_xorg-server/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/x11r7/xserver_xorg-server/Config.in b/package/x11r7/xserver_xorg-server/Config.in
index 2bc3f75239..71697ef3f5 100644
--- a/package/x11r7/xserver_xorg-server/Config.in
+++ b/package/x11r7/xserver_xorg-server/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_XSERVER_XORG_SERVER
bool "xorg-server"
+ depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_LIBPCIACCESS if BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
# We need a SHA1 implementation. If either openssl or
# libgcrypt are already part of the build, we'll use one of
@@ -48,7 +49,6 @@ config BR2_PACKAGE_XSERVER_XORG_SERVER
select BR2_PACKAGE_XPROTO_XPROTO
select BR2_PACKAGE_XUTIL_UTIL_MACROS
select BR2_PACKAGE_XKEYBOARD_CONFIG
- depends on BR2_USE_MMU # fork()
help
X.Org X server
@@ -93,9 +93,9 @@ choice
config BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
bool "Modular X.org"
+ depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_LIBDRM if (BR2_PACKAGE_XPROTO_XF86DRIPROTO || \
BR2_PACKAGE_XPROTO_DRI2PROTO)
- depends on BR2_INSTALL_LIBSTDCPP
help
This variant of the X.org server is the full-blown variant,
as used by desktop GNU/Linux distributions. The drivers (for
OpenPOWER on IntegriCloud