summaryrefslogtreecommitdiffstats
path: root/package/ubus
diff options
context:
space:
mode:
authorAdam Duskett <Aduskett@gmail.com>2017-04-22 13:18:07 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-02 14:43:46 +0200
commita2b31892a886a5b11bca85ca9e6a689f6f3df9c8 (patch)
treeda5e5762002f9dbb34043a68043db0edf977da38 /package/ubus
parent168be5c2dbfdd8e37bf87fff321d3bf45e0bb948 (diff)
downloadbuildroot-a2b31892a886a5b11bca85ca9e6a689f6f3df9c8.tar.gz
buildroot-a2b31892a886a5b11bca85ca9e6a689f6f3df9c8.zip
package/u*/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 u 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>
Diffstat (limited to 'package/ubus')
-rw-r--r--package/ubus/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/ubus/Config.in b/package/ubus/Config.in
index c14f6a86e7..3d34121350 100644
--- a/package/ubus/Config.in
+++ b/package/ubus/Config.in
@@ -4,10 +4,10 @@ comment "ubus needs a toolchain w/ dynamic library"
config BR2_PACKAGE_UBUS
bool "ubus"
- select BR2_PACKAGE_LIBUBOX
- select BR2_PACKAGE_JSON_C
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
depends on !BR2_STATIC_LIBS # libubox
+ select BR2_PACKAGE_LIBUBOX
+ select BR2_PACKAGE_JSON_C
help
IPC/RPC bus that allows communication between processes.
OpenPOWER on IntegriCloud