buildroot receipe: Fix styp error
All checks were successful
the build was successful

This commit is contained in:
2019-04-11 23:32:12 +02:00
parent ec7019d0e9
commit ed991db789
18 changed files with 42 additions and 45 deletions

View File

@@ -1,9 +1,9 @@
config BR2_PACKAGE_CHACOND
bool "chacond"
default n
select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UBUS
select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_WIRINGPI
default n
help
This program manage the chacond protocol (send event).

View File

@@ -8,7 +8,6 @@ DASHBOARD_VERSION:= 1.0.0
DASHBOARD_SITE = $(TOPDIR)/../../src/prog/dashboard
DASHBOARD_SITE_METHOD = local
DASHBOARD_INSTALL_STAGING = NO
define DASHBOARD_BUILD_CMDS
cd $(@D) && \

View File

@@ -1,7 +1,7 @@
config BR2_PACKAGE_DOMOD
bool "domod"
default n
select BR2_PACKAGE_LIBUBUS_CPP
select BR2_PACKAGE_JSON_C
default n
help
This program is the main domo daemon.

View File

@@ -1,8 +1,8 @@
config BR2_PACKAGE_LIBUBUS_CPP
bool "libubus-cpp"
default n
select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UBUS
select BR2_PACKAGE_JSON_C
default n
help
Provide a C++ backend for the ubus library.

View File

@@ -1,10 +1,10 @@
config BR2_PACKAGE_NETIFD
bool "netifd"
default n
select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UBUS
select BR2_PACKAGE_UCI
select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_LIBNL
default n
help
This program manage network interfaces.

View File

@@ -1,26 +1,25 @@
config BR2_PACKAGE_PROCD
bool "procd"
default n
select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UBUS
select BR2_PACKAGE_JSON_C
default n
help
This program manage process.
config BR2_PACKAGE_PROCD_DISABLE_INIT
depends on BR2_PACKAGE_PROCD
bool "Disable the init part of procd"
default n
depends on BR2_PACKAGE_PROCD
help
Disable the init part of procd
config BR2_PACKAGE_PROCD_EARLY_PATH
depends on BR2_PACKAGE_PROCD
string "Custom procd EARLY_PATH"
default "/usr/sbin:/sbin:/usr/bin:/bin:/usr/local/bin"
depends on BR2_PACKAGE_PROCD
help
Customize the PATH variable set by procd in its early stage.
This is inherited by all the children of procd.
When left empty, defaults to procd default value:
/usr/sbin:/sbin:/usr/bin:/bin

View File

@@ -1,6 +1,6 @@
config BR2_PACKAGE_RESTD
select BR2_PACKAGE_LIBCIVETWEB_CPP
bool "restd"
default n
select BR2_PACKAGE_LIBCIVETWEB_CPP
help
This program manage expose the restd.

View File

@@ -1,7 +1,7 @@
config BR2_PACKAGE_SPRINKLERD
bool "sprinklerd"
default n
select BR2_PACKAGE_LIBUBUS_CPP
select BR2_PACKAGE_JSONCPP
default n
help
This program manage the sprinklers of the domo project.

View File

@@ -2,18 +2,18 @@ menuconfig BR2_PACKAGE_UHTTPD_3P
bool "uhttpd (override)"
default n
help
uHTTPd is a tiny single threaded HTTP server with TLS, CGI and Lua
support. It is intended as a drop-in replacement for the Busybox
HTTP daemon.
uHTTPd is a tiny single threaded HTTP server with TLS,
CGI and Luasupport. It is intended as a drop-in
replacement for the Busybox HTTP daemon.
if BR2_PACKAGE_UHTTPD_3P
config BR2_PACKAGE_UHTTPD_UBUS_SUPPORT
bool "UBus JSON_RPC plugin"
default n
depends on BR2_PACKAGE_UHTTPD_3P
select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_LIBUBUS_CPP
bool "UBus JSON_RPC plugin"
default n
help
Enables remote UBus calls over HTTP

View File

@@ -1,10 +1,10 @@
menuconfig BR2_PACKAGE_UHTTPD_REST_API_PLUGIN
bool "uhttpd rest api plugin"
default n
select BR2_PACKAGE_UHTTPD_3P
select BR2_PACKAGE_UBUS
select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_LIBFMT
select BR2_PACKAGE_LIBUBUS_CPP
default n
help
Enable the rest api uhttpd plugin.

View File

@@ -9,7 +9,6 @@ UHTTPD_REST_API_PLUGIN_VERSION:= 1.0.0
UHTTPD_REST_API_PLUGIN_SITE = $(TOPDIR)/../../src/plugins/uhttpd/uhttpd-rest-api/builders/cmake
UHTTPD_REST_API_PLUGIN_SITE_METHOD = local
UHTTPD_REST_API_PLUGIN_INSTALL_TARGET = YES
UHTTPD_REST_API_PLUGIN_INSTALL_STAGING = YES
UHTTPD_REST_API_PLUGIN_DEPENDENCIES = uhttpd-3p ubus json-c libfmt libubus-cpp