summaryrefslogtreecommitdiffstats
path: root/build/build_ovs_nsh.sh
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2017-09-19 11:18:37 -0400
committerTim Rozet <trozet@redhat.com>2017-09-19 20:17:44 +0000
commite8666e078f94fdc48b340bc4466d35ce97551e0d (patch)
tree9fde65a9057f7e3ab301957f1870585d2eed9822 /build/build_ovs_nsh.sh
parente66df857ac68c728a05d6305d60142e8ed7d223e (diff)
Removes building OVS 2.6.1 with NSH
For master(Pike) we wont need this anymore since OVS 2.8 will have built in support for NSH. Change-Id: I51e2f4abf282ddb83d3edef9e5b827363a4d68be Signed-off-by: Tim Rozet <trozet@redhat.com>
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-//'`\""