aboutsummaryrefslogtreecommitdiffstats
path: root/build-root/scripts/find-dev-contents
blob: d4f7b63fb868142267d908195974dfc462cb709c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash

# includes
paths=`find $1/*/include -type f -print | grep -v '/dpdk/include/'`
rm -f $2

for path in $paths
do
    relpath=`echo $path | sed -e 's:.*/include/::'`
    dir=`dirname $relpath`
    if [ $dir = "." ] ; then
        echo ../$path /usr/include >> $2
    else
        echo ../$path /usr/include/$dir >> $2
    fi
done        

# sample plugin
paths=`(cd ..; find src/examples/sample-plugin -type f -print | grep -v autom4te)`

for path in $paths
do
    relpath=`echo $path | sed -e 's:.*src/examples/::'`
    dir=`dirname $relpath`
    if [ $dir = "sample-plugin" ] ; then
        echo ../../$path /usr/share/doc/vpp/examples/sample-plugin/ >> $2
    else
        echo ../../$path \
        /usr/share/doc/vpp/examples/$dir >> $2
    fi
done