Add x86_64 perfmon tables
[vpp.git] / build-root / scripts / find-dev-contents
1 #!/bin/bash
2
3 # Copyright (c) 2015 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # includes
17 paths=`find $1/*/include -type f -print | grep -v '/dpdk/include/'`
18 rm -f $2
19
20 for path in $paths
21 do
22     relpath=`echo $path | sed -e 's:.*/include/::'`
23     dir=`dirname $relpath`
24     if [ $dir = "." ] ; then
25         echo ../$path /usr/include >> $2
26     else
27         echo ../$path /usr/include/$dir >> $2
28     fi
29 done        
30
31 # Perf monitor .json tarball
32 for i in $(find ${1}/vpp/share/vpp/plugins/perfmon -name *.tar.xz -type f -print); do
33     echo ../${i} /usr/share/vpp/plugins/perfmon >> ${2}
34 done
35
36 # sample plugin
37 paths=`(cd ..; find src/examples/sample-plugin -type f -print | grep -v autom4te)`
38
39 for path in $paths
40 do
41     relpath=`echo $path | sed -e 's:.*src/examples/::'`
42     dir=`dirname $relpath`
43     if [ $dir = "sample-plugin" ] ; then
44         echo ../../$path /usr/share/doc/vpp/examples/sample-plugin/ >> $2
45     else
46         echo ../../$path \
47         /usr/share/doc/vpp/examples/$dir >> $2
48     fi
49 done