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).
This program manage the chacond protocol (send event).

View File

@@ -2,4 +2,4 @@ config BR2_PACKAGE_DASHBOARD
bool "dashboard"
default n
help
html control dashboard
html control dashboard

View File

@@ -8,17 +8,16 @@ 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) && \
npm install && \
npm run build
cd $(@D) && \
npm install && \
npm run build
endef
define DASHBOARD_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/usr/local/share/dashboard
cp -a $(@D)/dist/* $(TARGET_DIR)/usr/local/share/dashboard
mkdir -p $(TARGET_DIR)/usr/local/share/dashboard
cp -a $(@D)/dist/* $(TARGET_DIR)/usr/local/share/dashboard
endef
$(eval $(generic-package))

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.
This program is the main domo daemon.

View File

@@ -2,4 +2,4 @@ config BR2_PACKAGE_LIBCIVETWEB_CPP
bool "libcivetweb-cpp"
default n
help
Provide a C++ http/websocket library.
Provide a C++ http/websocket library.

View File

@@ -2,4 +2,4 @@ config BR2_PACKAGE_LIBFMT
bool "fmt"
default n
help
Small, safe and fast formatting library
Small, safe and fast formatting library

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.
Provide a C++ backend for the ubus library.

View File

@@ -4,4 +4,4 @@ config BR2_PACKAGE_MOUNTD
select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UCI
help
auto mount daemon.
auto mount daemon.

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.
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.
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
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
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.
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.
This program manage the sprinklers of the domo project.

View File

@@ -4,4 +4,4 @@ config BR2_PACKAGE_UBOX
select BR2_PACKAGE_LIBUBOX
select BR2_PACKAGE_UBUS
help
Ubox tools.
Ubox tools.

View File

@@ -3,4 +3,4 @@ config BR2_PACKAGE_UCI
default n
select BR2_PACKAGE_LIBUBOX
help
Ubox configuration tools.
Ubox configuration tools.

View File

@@ -2,19 +2,19 @@ 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
Enables remote UBus calls over HTTP
endif

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.
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

View File

@@ -2,5 +2,5 @@ config BR2_PACKAGE_HOST_VIRTFS_XATTR
bool "host virtfs-xattr"
default n
help
Utililty used to alter metadata of file in the target
directory, for sharing with 9p fsdev in qemu.
Utililty used to alter metadata of file in the target
directory, for sharing with 9p fsdev in qemu.