License text cleanup
[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 # sample plugin
32 paths=`(cd ..; find src/examples/sample-plugin -type f -print | grep -v autom4te)`
33
34 for path in $paths
35 do
36     relpath=`echo $path | sed -e 's:.*src/examples/::'`
37     dir=`dirname $relpath`
38     if [ $dir = "sample-plugin" ] ; then
39         echo ../../$path /usr/share/doc/vpp/examples/sample-plugin/ >> $2
40     else
41         echo ../../$path \
42         /usr/share/doc/vpp/examples/$dir >> $2
43     fi
44 done