Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iopsys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Feed
iopsys
Commits
deaa9151
Commit
deaa9151
authored
7 months ago
by
Vivek Dutta
Browse files
Options
Downloads
Patches
Plain Diff
bbfdm: 1.12.24
parent
801dee5c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bbfdm/Makefile
+2
-1
2 additions, 1 deletion
bbfdm/Makefile
bbfdm/tools/bbfdm.sh
+5
-1
5 additions, 1 deletion
bbfdm/tools/bbfdm.sh
bbfdm/tools/validate_plugins.py
+2
-0
2 additions, 0 deletions
bbfdm/tools/validate_plugins.py
with
9 additions
and
2 deletions
bbfdm/Makefile
+
2
−
1
View file @
deaa9151
...
@@ -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.2
3
PKG_VERSION
:=
1.12.2
4
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
...
...
This diff is collapsed.
Click to expand it.
bbfdm/tools/bbfdm.sh
+
5
−
1
View file @
deaa9151
...
@@ -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
}
)
el
se
el
if
[
"
${
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
...
...
This diff is collapsed.
Click to expand it.
bbfdm/tools/validate_plugins.py
+
2
−
0
View file @
deaa9151
...
@@ -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
"
]
]
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment