Skip to content
Snippets Groups Projects
Commit deaa9151 authored by Vivek Dutta's avatar Vivek Dutta
Browse files

bbfdm: 1.12.24

parent 801dee5c
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=bbfdm PKG_NAME:=bbfdm
PKG_VERSION:=1.12.23 PKG_VERSION:=1.12.24
USE_LOCAL:=0 USE_LOCAL:=0
ifneq ($(USE_LOCAL),1) ifneq ($(USE_LOCAL),1)
...@@ -16,6 +16,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.gz ...@@ -16,6 +16,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.gz
PKG_MIRROR_HASH:=skip PKG_MIRROR_HASH:=skip
endif endif
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_LICENSE:=BSD-3-Clause PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE PKG_LICENSE_FILES:=LICENSE
......
...@@ -163,11 +163,15 @@ else ...@@ -163,11 +163,15 @@ else
if [ "${PLUGIN}" -eq "1" ]; then if [ "${PLUGIN}" -eq "1" ]; then
priority="${DATA:-0}" priority="${DATA:-0}"
install_dir ${DEST}/${BBFDM_BASE_DM_PATH}/plugins install_dir ${DEST}/${BBFDM_BASE_DM_PATH}/plugins
if [ "${priority}" -gt "0" ]; then if [ "${priority}" -gt "0" ]; then
# install with priority if defined # install with priority if defined
bbfdm_install_dm ${SRC} ${DEST}/${BBFDM_BASE_DM_PATH}/plugins/${priority}_$(basename ${SRC}) bbfdm_install_dm ${SRC} ${DEST}/${BBFDM_BASE_DM_PATH}/plugins/${priority}_$(basename ${SRC})
else elif [ "${priority}" -eq "0" ]; then
bbfdm_install_dm ${SRC} ${DEST}/${BBFDM_BASE_DM_PATH}/plugins/$(basename ${SRC}) bbfdm_install_dm ${SRC} ${DEST}/${BBFDM_BASE_DM_PATH}/plugins/$(basename ${SRC})
else
echo "# Priority should be an unsigned integer"
exit 1
fi fi
fi fi
fi fi
......
...@@ -228,6 +228,7 @@ event_schema = { ...@@ -228,6 +228,7 @@ event_schema = {
"protocols_t": { "protocols_t": {
"type": "string", "type": "string",
"enum": [ "enum": [
"none",
"usp" "usp"
] ]
} }
...@@ -255,6 +256,7 @@ command_schema = { ...@@ -255,6 +256,7 @@ command_schema = {
"protocols_t": { "protocols_t": {
"type": "string", "type": "string",
"enum": [ "enum": [
"none",
"usp" "usp"
] ]
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment