summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Duskett <Aduskett@gmail.com>2017-04-22 13:17:49 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-04-29 17:17:57 +0200
commit48bd50287fdebb9bcdc80952e743c331ccf9e4ee (patch)
tree65850f755835862dc5c1ab2d1d9ea7f42312ea23
parent7b493e411f5b4473b275aa125d85386a5d1127a9 (diff)
downloadbuildroot-48bd50287fdebb9bcdc80952e743c331ccf9e4ee.tar.gz
buildroot-48bd50287fdebb9bcdc80952e743c331ccf9e4ee.zip
package/b*/Config.in: fix ordering of statements
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>
-rw-r--r--package/bandwidthd/Config.in2
-rw-r--r--package/bash/Config.in4
-rw-r--r--package/binutils/Config.in2
-rw-r--r--package/binutils/Config.in.host2
-rw-r--r--package/bluez5_utils/Config.in2
-rw-r--r--package/boost/Config.in4
-rw-r--r--package/bustle/Config.in4
-rw-r--r--package/busybox/Config.in4
8 files changed, 12 insertions, 12 deletions
diff --git a/package/bandwidthd/Config.in b/package/bandwidthd/Config.in
index b4a47f2ec6..a503da43ff 100644
--- a/package/bandwidthd/Config.in
+++ b/package/bandwidthd/Config.in
@@ -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
diff --git a/package/bash/Config.in b/package/bash/Config.in
index 783e4b38b5..5a9ebb8d02 100644
--- a/package/bash/Config.in
+++ b/package/bash/Config.in
@@ -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.
diff --git a/package/binutils/Config.in b/package/binutils/Config.in
index fdfdfe9052..360dd5e3b2 100644
--- a/package/binutils/Config.in
+++ b/package/binutils/Config.in
@@ -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
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host
index cca71fbb7a..aa24fd7c8b 100644
--- a/package/binutils/Config.in.host
+++ b/package/binutils/Config.in.host
@@ -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.
diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in
index a7c0ee4ba4..3611c6971a 100644
--- a/package/bluez5_utils/Config.in
+++ b/package/bluez5_utils/Config.in
@@ -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.
diff --git a/package/boost/Config.in b/package/boost/Config.in
index 403bbf3100..9825c09ad2 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -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"
diff --git a/package/bustle/Config.in b/package/bustle/Config.in
index f213da503e..109ebdeed8 100644
--- a/package/bustle/Config.in
+++ b/package/bustle/Config.in
@@ -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
diff --git a/package/busybox/Config.in b/package/busybox/Config.in
index 504cd8a65a..7eb7eb9639 100644
--- a/package/busybox/Config.in
+++ b/package/busybox/Config.in
@@ -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
OpenPOWER on IntegriCloud