summaryrefslogtreecommitdiffstats
path: root/build/build_ovs_rpm.sh
blob: e28c23fe39c710d63f34f0d3825b46295e3b513e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#!/bin/bash

# Copyright (c) 2016 Open Platform for NFV Project, Inc. and its contributors
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.

set -e

echo "==============================="
echo "executing $0 $@"
echo "executing on machine `uname -a`"

usage() {
    echo "run BuildAndTestOVS -h for help"
}

while getopts "cdg:hkp:u:v" opt; do
    case "$opt" in
        c)
            setnocheck="--without check"
            ;;
        d)
            DPDK="yes"
            ;;
        g)
            TAG=${OPTARG}
            ;;
        h|\?)
            usage
            exit 1
            ;;
        k)
            kmod="yes"
            ;;
        p)
            OVS_PATCH=${OPTARG}
            ;;
        u)
            OVS_REPO_URL=${OPTARG}
            ;;
        v)
            verbose="yes"
            ;;
    esac
done

HOME=`pwd`
TOPDIR=$HOME
TMPDIR=$TOPDIR/ovsrpm

BUILDDIR=$HOME

source $BUILDDIR/functions.sh

echo "---------------------------------------"
echo "Clean out old working dir."
echo
if [ -d $TMPDIR ]
then
    rm -rf $TMPDIR
fi

function install_pre_reqs() {
    echo "----------------------------------------"
    echo "Install pre-reqs."
    echo
    sudo yum -y install gcc make python-devel openssl-devel kernel-devel graphviz \
                kernel-debug-devel autoconf automake rpm-build redhat-rpm-config \
                libtool python-twisted-core desktop-file-utils groff PyQt4
}

VERSION=2.3.90
os_type=fedora
kernel_version=$(uname -a | awk '{print $3}')

RPMDIR=$HOME/rpmbuild

echo "---------------------------------------"
echo "Clean out old reminents of old rpms and rpm _topdir."
echo

rm openvswitch*.rpm || true
if [  -d $RPMDIR ]; then
    rm -rf $RPMDIR
fi

echo "---------------------------------------"
echo "Create new rpm _topdir."
echo
mkdir -p $HOME/rpmbuild/RPMS
mkdir -p $HOME/rpmbuild/SOURCES
mkdir -p $HOME/rpmbuild/SPECS
mkdir -p $HOME/rpmbuild/SRPMS


mkdir -p $TMPDIR

cd $TMPDIR

if [ ! -z $DPDK ]; then
    echo "----------------------------------"
    echo "Build OVS for dpdk. Use Fedora copr repo"
    echo
    echo "----------------------------------"
    echo "Clone Fedora copr repo and copy files."
    echo
    git clone https://github.com/tfherbert/ovs-snap.git
    cd ovs-snap
    git checkout $COPR_OVS_VERSION
    echo "-----------------------------------"
    cp $TMPDIR/ovs-snap/openvswitch.spec $RPMDIR/SPECS
    cp $TMPDIR/ovs-snap/* $RPMDIR/SOURCES
    snapgit=`grep "define snapver" $TMPDIR/ovs-snap/openvswitch.spec | cut -c26-33`
    echo "-----------------------------------------------"
    echo "Remove any old installed ovs and dpdk rpms."
    echo
    cleanrpms

    if [ -z $DPDK_VERSION ]; then
        DPDK_VERSION=16.04.0
    fi
    echo "-------------------------------------------"
    echo "Install dpdk and dpdk development rpms for version $DPDK_VERSION"
    echo
    sudo rpm -ivh $HOME/dpdk-${DPDK_VERSION:0:1}*.rpm
    sudo rpm -ivh $HOME/dpdk-devel*.rpm
    echo "----------------------------------------"
    echo "Copy DPDK RPM to SOURCES"
    echo
    cp $HOME/*.rpm $RPMDIR/SOURCES
    echo "--------------------------------------------"
    echo "Get commit from $snapgit User Space OVS version $TAG"
    echo
    cd $TMPDIR
    git clone $OVS_REPO_URL
    cd $TMPDIR/ovs
    git checkout $snapgit
    echo "--------------------------------------------"
    echo "Creating snapshot, $archive with name same as in spec file."
    echo
    snapser=`git log --pretty=oneline | wc -l`
    basever=`grep AC_INIT configure.ac | cut -d' ' -f2 | cut -d, -f1`
    prefix=openvswitch-${basever}
    archive=${prefix}-${snapser}.git${snapgit}.tar.gz
    git archive --prefix=${prefix}-${snapser}.git${snapgit}/ HEAD  | gzip -9 > $RPMDIR/SOURCES/${archive}
    cd $TMPDIR/ovs-snap
    echo "--------------------------------------------"
    echo "Build openvswitch RPM"
    echo
    rpmbuild -bb --define "_topdir `echo $RPMDIR`" $setnocheck openvswitch.spec
else
    echo "-------------------------------------------------"
    echo "Build OVS without DPDK:"
    echo "Use spec files for $os_type in OVS distribution."
    echo
    if [[ "$TAG" =~ "master" ]]; then
        git clone $OVS_REPO_URL
        cd ovs

        if [[ ! "$OVS_PATCH" =~ "no" ]]; then
            echo "Apply patches from $OVS_PATCH"
        fi
        basever=`grep AC_INIT configure.ac | cut -d' ' -f2 | cut -d, -f1`
        export VERSION=$basever

        echo "--------------------------------------------"
        echo "Making distribution tarball for Open vswitch version $VERSION"
        echo
        ./boot.sh
        ./configure
        make dist

        echo cp openvswitch-*.tar.gz $HOME/rpmbuild/SOURCES
        cp openvswitch-*.tar.gz $HOME/rpmbuild/SOURCES
    else
        export VERSION=${TAG}
        echo "---------------------------------------------"
        echo "Get openvswith-${VERSION}.tar.gz"
        echo
        curl --silent --output $HOME/rpmbuild/SOURCES/openvswitch-${VERSION}.tar.gz http://openvswitch.org/releases/openvswitch-${VERSION}.tar.gz
    fi

fi
#
# This section is for building OVS kernel module.
#
if [ ! -z $kmod ]; then
    cd $TMPDIR/ovs
    echo "--------------------------------------------"
    echo "Making distribution tarball for Open vswitch version $VERSION"
    echo
    ./boot.sh
    ./configure
    make dist
    echo "--------------------------------------------"
    echo "Copy distribution tarball to $HOME/rpmbuild/SOURCES"
    echo
    cp openvswitch-*.tar.gz $HOME/rpmbuild/SOURCES
    echo "--------------------------------------------"
    echo "Building openvswitch kernel module RPM"
    echo
    rpmbuild -bb -D "kversion $kernel_version" -D "kflavors default" --define "_topdir `echo $RPMDIR`" $setnocheck rhel/openvswitch-kmod-${os_type}.spec
fi

cp $RPMDIR/RPMS/x86_64/*.rpm $HOME

exit 0