]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/b*/Config.in: fix ordering of statements
authorAdam Duskett <Aduskett@gmail.com>
Sat, 22 Apr 2017 17:17:49 +0000 (13:17 -0400)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 29 Apr 2017 15:17:57 +0000 (17:17 +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 b 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/bandwidthd/Config.in
package/bash/Config.in
package/binutils/Config.in
package/binutils/Config.in.host
package/bluez5_utils/Config.in
package/boost/Config.in
package/bustle/Config.in
package/busybox/Config.in

index b4a47f2ec698177e79e56801760367270e5fc2d5..a503da43ffd82b82686aa379d57b92886bdc0bcb 100644 (file)
@@ -32,8 +32,8 @@ if BR2_PACKAGE_BANDWIDTHD
 
 config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL
        bool "enable postgresql log target support"
-       select BR2_PACKAGE_POSTGRESQL
        depends on !BR2_STATIC_LIBS
+       select BR2_PACKAGE_POSTGRESQL
        help
          Enable support for logging the bandwidthd data to a remote
          (or local) postgresql server. This data can then be viewed
index 783e4b38b5793e89b7d7128b8cd45a3edc77bc3c..5a9ebb8d02fc9faf77028a169f9d984a000b6556 100644 (file)
@@ -1,10 +1,10 @@
 config BR2_PACKAGE_BASH
        bool "bash"
-       select BR2_PACKAGE_NCURSES
-       select BR2_PACKAGE_READLINE
        # uses fork()
        depends on BR2_USE_MMU
        depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+       select BR2_PACKAGE_NCURSES
+       select BR2_PACKAGE_READLINE
        help
          The standard GNU Bourne again shell.
 
index fdfdfe9052fac865940633094151423f7779018c..360dd5e3b222087416f70118967a1ea173e4e133 100644 (file)
@@ -1,8 +1,8 @@
 config BR2_PACKAGE_BINUTILS
        bool "binutils"
-       select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
        depends on !BR2_nios2
        depends on BR2_USE_WCHAR
+       select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
        help
          Install binutils on the target
 
index cca71fbb7a82ddcf775224f61dd5056ef262b671..aa24fd7c8b6dd0f1deaba6f00f5a120279bd73e8 100644 (file)
@@ -2,8 +2,8 @@ comment "Binutils Options"
 
 choice
        prompt "Binutils Version"
-       depends on !BR2_arc
        default BR2_BINUTILS_VERSION_2_27_X
+       depends on !BR2_arc
        help
          Select the version of binutils you wish to use.
 
index a7c0ee4ba47e41c91d9b543492c2c990d2575763..3611c6971a6d03f48ec205f3f70c17f4f7f44592 100644 (file)
@@ -29,8 +29,8 @@ if BR2_PACKAGE_BLUEZ5_UTILS
 
 config BR2_PACKAGE_BLUEZ5_UTILS_OBEX
        bool "build OBEX support"
-       select BR2_PACKAGE_LIBICAL
        depends on BR2_INSTALL_LIBSTDCPP
+       select BR2_PACKAGE_LIBICAL
        help
          Enable the OBEX support in Bluez 5.x.
 
index 403bbf3100ae996ef54eed875ae4b07fab9de31b..9825c09ad2852b491757c98c44813e7b6a91c402 100644 (file)
@@ -115,9 +115,9 @@ config BR2_PACKAGE_BOOST_MATH
        bool "boost-math"
 
 config BR2_PACKAGE_BOOST_METAPARSE
+       bool "boost-metaparse"
        depends on BR2_USE_MMU # boost-test
        select BR2_PACKAGE_BOOST_TEST
-       bool "boost-metaparse"
 
 config BR2_PACKAGE_BOOST_MPI
        bool "boost-mpi"
@@ -126,8 +126,8 @@ config BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
        bool "boost-program_options"
 
 config BR2_PACKAGE_BOOST_PYTHON
-       depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
        bool "boost-python"
+       depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
 
 config BR2_PACKAGE_BOOST_RANDOM
        bool "boost-random"
index f213da503e2a8b296dd446d2ca5e95bed82b63d7..109ebdeed8a376bbdf6c3458b1c2b9fb23a81f9f 100644 (file)
@@ -1,11 +1,11 @@
 config BR2_PACKAGE_BUSTLE
        bool "bustle"
-       select BR2_PACKAGE_LIBPCAP
-       select BR2_PACKAGE_LIBGLIB2
        depends on BR2_USE_WCHAR # libglib2
        depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
        depends on BR2_USE_MMU # libglib2
        depends on BR2_PACKAGE_DBUS # runtime
+       select BR2_PACKAGE_LIBPCAP
+       select BR2_PACKAGE_LIBGLIB2
        help
          Bustle is a better dbus-monitor! It records and draws
          sequence diagrams of D-Bus activity, showing signal
index 504cd8a65abcb3746fbb2abe273d18d89c047538..7eb7eb96398657e0a0fbf88f995d00653bc4fea5 100644 (file)
@@ -35,12 +35,12 @@ config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
          by busybox.
 
 config BR2_PACKAGE_BUSYBOX_SELINUX
-       select BR2_PACKAGE_LIBSELINUX
+       bool "Enable SELinux support"
        depends on BR2_TOOLCHAIN_HAS_THREADS
        depends on !BR2_STATIC_LIBS
        depends on BR2_TOOLCHAIN_USES_GLIBC
        depends on !BR2_arc
-       bool "Enable SELinux support"
+       select BR2_PACKAGE_LIBSELINUX
        help
          Enable SELinux support in BusyBox. Please note that
          depending on your BusyBox configuration and the SELinux