diff options
author | Dave Barach <dave@barachs.net> | 2018-09-10 12:31:15 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-10-22 12:02:04 +0000 |
commit | 4d1a866aff6ceb03025990b6e60b42faf09ef486 (patch) | |
tree | bec495932876d9649f26179b4c24b6938be43f38 /build-root/scripts/find-dev-contents | |
parent | 115a3ac59a16f9dcfee92eaecc79cd1fa3320e29 (diff) |
X86_64 perf counter plugin
Change-Id: Ie5a00c15ee9536cc61afab57f6cadc1aa1972f3c
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'build-root/scripts/find-dev-contents')
-rwxr-xr-x | build-root/scripts/find-dev-contents | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build-root/scripts/find-dev-contents b/build-root/scripts/find-dev-contents index 623121ef95d..73ba95bc79c 100755 --- a/build-root/scripts/find-dev-contents +++ b/build-root/scripts/find-dev-contents @@ -28,6 +28,11 @@ do fi done +# Perf monitor .json files +for i in $(find ${1}/vpp/share/vpp/plugins/perfmon -name *.json -type f -print); do + echo ../${i} /usr/share/vpp/plugins/perfmon >> ${2} +done + # sample plugin paths=`(cd ..; find src/examples/sample-plugin -type f -print | grep -v autom4te)` |