network/openvswitch: Updated for version 1.9.0.

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
Christopher Walker 2013-04-24 07:14:20 -04:00 committed by Niels Horn
parent 43e2aa36e1
commit 326c6932f2
4 changed files with 14 additions and 14 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for openvswitch
# Copyright 2008-2012 Christopher Walker Copperas Cove, TX
# Copyright 2008-2013 Christopher Walker Copperas Cove, TX
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=openvswitch
VERSION=${VERSION:-1.4.5}
VERSION=${VERSION:-1.9.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -90,9 +90,9 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch
install -m 644 datapath/linux/openvswitch_mod.ko \
install -m 644 datapath/linux/openvswitch.ko \
$PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch
install -m 644 datapath/linux/brcompat_mod.ko \
install -m 644 datapath/linux/brcompat.ko \
$PKG/lib/modules/${KERNEL}/kernel/extra/openvswitch
mkdir -p $PKG/etc/openvswitch $PKG/etc/rc.d $PKG/var/run/openvswitch

View file

@ -1,8 +1,8 @@
PRGNAM="openvswitch"
VERSION="1.4.5"
VERSION="1.9.0"
HOMEPAGE="http://openvswitch.org"
DOWNLOAD="http://openvswitch.org/releases/openvswitch-1.4.5.tar.gz"
MD5SUM="96b3be7ab25fa87eee640526506688e5"
DOWNLOAD="http://openvswitch.org/releases/openvswitch-1.9.0.tar.gz"
MD5SUM="e9004202b0e10c0de9870f19d2044f11"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""

View file

@ -21,14 +21,14 @@ VSPID=/var/run/openvswitch/ovs-vswitchd.pid
DBPID=/var/run/openvswitch/ovsdb-server.pid
# Insert kernel driver for Open vSwitch:
/sbin/modprobe openvswitch_mod
/sbin/modprobe openvswitch
# Insert kernel driver for VLANs:
/sbin/modprobe 8021q
# Insert kernel driver for bridge util compatibility:
if [ $BRCOMPAT -ne 0 ] ; then
/sbin/modprobe brcompat_mod
/sbin/modprobe brcompat
fi
# Start openvswitch:

View file

@ -1,9 +1,9 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|' on
# the right side marks the last column you can put a character in. You must make
# exactly 11 lines for the formatting to be correct. It's also customary to
# leave one space after the ':'.
# The "handy ruler" below makes it easier to edit a package description.
# Line up the first '|' above the ':' following the base package name, and
# the '|' on the right side marks the last column you can put a character in.
# You must make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
openvswitch: openvswitch (multilayer virtual switch)