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 config BR2_PACKAGE_CHACOND
bool "chacond" bool "chacond"
default n
select BR2_PACKAGE_LIBUBOX select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UBUS select BR2_PACKAGE_UBUS
select BR2_PACKAGE_JSON_C select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_WIRINGPI select BR2_PACKAGE_WIRINGPI
default n
help help
This program manage the chacond protocol (send event). 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 = $(TOPDIR)/../../src/prog/dashboard
DASHBOARD_SITE_METHOD = local DASHBOARD_SITE_METHOD = local
DASHBOARD_INSTALL_STAGING = NO
define DASHBOARD_BUILD_CMDS define DASHBOARD_BUILD_CMDS
cd $(@D) && \ cd $(@D) && \

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,10 +1,10 @@
menuconfig BR2_PACKAGE_UHTTPD_REST_API_PLUGIN menuconfig BR2_PACKAGE_UHTTPD_REST_API_PLUGIN
bool "uhttpd rest api plugin" bool "uhttpd rest api plugin"
default n
select BR2_PACKAGE_UHTTPD_3P select BR2_PACKAGE_UHTTPD_3P
select BR2_PACKAGE_UBUS select BR2_PACKAGE_UBUS
select BR2_PACKAGE_JSON_C select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_LIBFMT select BR2_PACKAGE_LIBFMT
select BR2_PACKAGE_LIBUBUS_CPP select BR2_PACKAGE_LIBUBUS_CPP
default n
help help
Enable the rest api uhttpd plugin. 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 = $(TOPDIR)/../../src/plugins/uhttpd/uhttpd-rest-api/builders/cmake
UHTTPD_REST_API_PLUGIN_SITE_METHOD = local 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_INSTALL_STAGING = YES
UHTTPD_REST_API_PLUGIN_DEPENDENCIES = uhttpd-3p ubus json-c libfmt libubus-cpp UHTTPD_REST_API_PLUGIN_DEPENDENCIES = uhttpd-3p ubus json-c libfmt libubus-cpp