From: Panu Matilainen Date: Thu, 28 Jan 2016 12:23:52 +0000 (+0200) Subject: rhel: Add '--with dpdk' spec option to build DPDK-enabled packages X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=eea0cdb5c56a45653ec4215439e51bfe2504add3 rhel: Add '--with dpdk' spec option to build DPDK-enabled packages Requires DPDK >= 2.2 as that is the first version to have a standard install layout which we can discover without help from user. Additionally document the option in INSTALL.Fedora.md. Signed-off-by: Panu Matilainen Acked-by: Flavio Leitner Signed-off-by: Ben Pfaff --- diff --git a/INSTALL.Fedora.md b/INSTALL.Fedora.md index af55feb75..09defec31 100644 --- a/INSTALL.Fedora.md +++ b/INSTALL.Fedora.md @@ -62,6 +62,9 @@ $HOME/rpmbuild/SOURCES. This produces one RPM: "openvswitch". + To enable DPDK support in the resulting openvswitch package, + add `--with dpdk` to the build command. + The above command automatically runs the Open vSwitch unit tests. To disable the unit tests, run: diff --git a/rhel/openvswitch-fedora.spec.in b/rhel/openvswitch-fedora.spec.in index e65566553..704b6bbe5 100644 --- a/rhel/openvswitch-fedora.spec.in +++ b/rhel/openvswitch-fedora.spec.in @@ -16,6 +16,8 @@ # If libcap-ng isn't available and there is no need for running OVS # as regular user, specify the '--without libcapng' %bcond_without libcapng +# To enable DPDK support, specify '--with dpdk' when building +%bcond_with dpdk # Enable PIE, bz#955181 %global _hardened_build 1 @@ -49,6 +51,10 @@ BuildRequires: procps-ng %if %{with libcapng} BuildRequires: libcap-ng libcap-ng-devel %endif +%if %{with dpdk} +BuildRequires: dpdk-devel >= 2.2.0 +Provides: %{name}-dpdk = %{version}-%{release} +%endif Requires: openssl iproute module-init-tools #Upstream kernel commit 4f647e0a3c37b8d5086214128614a136064110c3 @@ -117,6 +123,9 @@ overlays and security groups. --enable-libcapng \ %else --disable-libcapng \ +%endif +%if %{with dpdk} + --with-dpdk=$(dirname %{_datadir}/dpdk/*/.config) \ %endif --enable-ssl \ --with-pkidir=%{_sharedstatedir}/openvswitch/pki