]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/d*/Config.in: fix ordering of statements
authorAdam Duskett <Aduskett@gmail.com>
Sat, 22 Apr 2017 17:17:51 +0000 (13:17 -0400)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 29 Apr 2017 19:15:31 +0000 (21:15 +0200)
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 d 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>
package/ding-libs/Config.in
package/directfb/Config.in
package/docker-engine/Config.in
package/dos2unix/Config.in
package/dovecot/Config.in
package/dropwatch/Config.in
package/dvblast/Config.in

index 7af75b7b944b4890d54c0015703498e3201f4573..d397f291f0999b3e1b8494365a2c72705b732cb9 100644 (file)
@@ -1,8 +1,8 @@
 config BR2_PACKAGE_DING_LIBS
        bool "ding-libs"
+       depends on BR2_USE_WCHAR || !BR2_NEEDS_GETTEXT
        select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
        select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
-       depends on BR2_USE_WCHAR || !BR2_NEEDS_GETTEXT
        help
          The ding-libs packages contain a set of libraries used by
          the System Security Services Daemon (SSSD) and other
index 6a3d71868fe5569daca322fa4ea01c9089b48ada..e3b53e0a871d8396fd8e97386e52800ea2e71997 100644 (file)
@@ -21,9 +21,9 @@ if BR2_PACKAGE_DIRECTFB
 
 config BR2_PACKAGE_DIRECTFB_MULTI
        bool "directfb multi application"
-       select BR2_PACKAGE_LINUX_FUSION
        depends on BR2_USE_MMU # madvise()
        depends on BR2_LINUX_KERNEL
+       select BR2_PACKAGE_LINUX_FUSION
        help
          Enable use of multiple concurrent DirectFB applications
 
@@ -113,8 +113,8 @@ config BR2_PACKAGE_DIRECTFB_SERIALMOUSE
 
 config BR2_PACKAGE_DIRECTFB_TSLIB
        bool "enable touchscreen support"
-       depends on !BR2_STATIC_LIBS # tslib
        default y
+       depends on !BR2_STATIC_LIBS # tslib
        select BR2_PACKAGE_TSLIB
 
 comment "touchscreen support needs a toolchain w/ dynamic library"
@@ -130,8 +130,8 @@ config BR2_PACKAGE_DIRECTFB_TIFF
 
 config BR2_PACKAGE_DIRECTFB_IMLIB2
        bool "enable IMLIB2 support"
-       select BR2_PACKAGE_IMLIB2
        depends on !BR2_STATIC_LIBS
+       select BR2_PACKAGE_IMLIB2
 
 comment "imlib2 support needs a toolchain w/ dynamic library"
        depends on BR2_STATIC_LIBS
index 8cde4a499bc24f20864e5ae3c93e008fc027e3c3..caaf639415f4af6793813d8af5f7d4b0c21fd636 100644 (file)
@@ -13,11 +13,11 @@ if BR2_PACKAGE_DOCKER_ENGINE
 
 config BR2_PACKAGE_DOCKER_ENGINE_DAEMON
        bool "docker daemon"
+       default y
        depends on BR2_USE_MMU # docker-containerd
        select BR2_PACKAGE_DOCKER_CONTAINERD # runtime dependency
        select BR2_PACKAGE_IPTABLES # runtime dependency
        select BR2_PACKAGE_SQLITE # runtime dependency
-       default y
        help
          Build the Docker system daemon.
          If not selected, will build client only.
index 0a4f5e2fff30823f3ac761eb92f54940e8ce500e..6945f52fadde8a43e3a5cb854057547813d8b0aa 100644 (file)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_DOS2UNIX
-       select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
        bool "dos2unix"
        depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+       select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
        help
          dos2unix converts text file line endings between CRLF and LF
 
index d1ff7bce916b251a20c54eb269e055352b5808f9..b93e09fcec9707a2f17b244adb2c09a1ca9159c4 100644 (file)
@@ -17,9 +17,9 @@ if BR2_PACKAGE_DOVECOT
 
 config BR2_PACKAGE_DOVECOT_MYSQL
        bool "mysql support"
-       select BR2_PACKAGE_MYSQL
        depends on BR2_INSTALL_LIBSTDCPP # mysql
        depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
+       select BR2_PACKAGE_MYSQL
        help
          Enable MySQL support.
 
index 6f04c85dd6607dc0ce3d8d89d4437bd6a6f695f7..127b69834ed459fb64a8ae86f6fa6aade186394a 100644 (file)
@@ -1,11 +1,11 @@
 config BR2_PACKAGE_DROPWATCH
        bool "dropwatch"
-       select BR2_PACKAGE_BINUTILS
        depends on !BR2_nios2 # binutils
        depends on BR2_USE_WCHAR # binutils
+       depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
+       select BR2_PACKAGE_BINUTILS
        select BR2_PACKAGE_READLINE
        select BR2_PACKAGE_LIBNL
-       depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
        help
          Dropwatch is an interactive utility for monitoring and
          recording packets that are dropped by the kernel
index b7f0c065bfb1b0ac58dcf72ff04bcaa0ecd85fb0..c358531edc23fc1616fc3afda6f70ade0519584d 100644 (file)
@@ -1,10 +1,10 @@
 config BR2_PACKAGE_DVBLAST
        bool "dvblast"
+       depends on !BR2_bfin  # libev
+       depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # clock_nanosleep()
        select BR2_PACKAGE_BITSTREAM
        select BR2_PACKAGE_LIBEV
        select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
-       depends on !BR2_bfin  # libev
-       depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # clock_nanosleep()
        help
          DVBlast is a simple and powerful MPEG-2/TS demux and
          streaming application.