summaryrefslogtreecommitdiffstats
path: root/build/build_ovs_nsh.sh
diff options
context:
space:
mode:
authorFeng Pan <fpan@redhat.com>2017-09-20 02:27:11 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-20 02:27:11 +0000
commitb12062bf50f211efb8568d0643a9c8ae33c472f6 (patch)
tree9f20f3114a99020e22a6ca63957e120ab6cccdc8 /build/build_ovs_nsh.sh
parentbdd2822247a9b3ddf2a30a9de49c97aca4d8eb43 (diff)
parente8666e078f94fdc48b340bc4466d35ce97551e0d (diff)
Merge "Removes building OVS 2.6.1 with NSH"
Diffstat (limited to 'build/build_ovs_nsh.sh')
-rwxr-xr-xbuild/build_ovs_nsh.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/build/build_ovs_nsh.sh b/build/build_ovs_nsh.sh
deleted file mode 100755
index 2fba43f5..00000000
--- a/build/build_ovs_nsh.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env bash
-##############################################################################
-# Copyright (c) 2016 Tim Rozet (Red Hat) and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-set -e
-
-yum -y install rpm-build autoconf automake libtool systemd-units \
-openssl openssl-devel python python-twisted-core python-zope-interface \
-python-six desktop-file-utils groff graphviz procps-ng libcap-ng \
-libcap-ng-devel PyQt4 selinux-policy-devel
-./boot.sh
-libtoolize --force
-aclocal
-autoheader
-automake --force-missing --add-missing
-autoconf
-./configure
-yum -y install rpmdevtools
-# hack due to build pulling in kernel vxlan header
-kernel_vxlan="/usr/src/kernels/$(rpm -q kernel | grep -Eo '[0-9].*x86_64')/include/net/vxlan.h"
-sed -i '/struct vxlan_metadata {/a\ u32 gpe;' $kernel_vxlan
-make rpm-fedora RPMBUILD_OPT="\"-D kversion `rpm -q kernel | rpmdev-sort | tail -n -1 | sed 's/^kernel-//'`\" --without check"
-make rpm-fedora-kmod RPMBUILD_OPT="\"-D kversion `rpm -q kernel | rpmdev-sort | tail -n -1 | sed 's/^kernel-//'`\""