e49aad
# Add option to build with examples
e49aad
%bcond_with examples
e49aad
# Add option to build without tools
e49aad
%bcond_without tools
e49aad
e49aad
# Dont edit Version: and Release: directly, only these:
f05580
#% define commit0 0da7f445df445630c794897347ee360d6fe6348b
f05580
#% define date 20181127
f05580
#% define shortcommit0 %(c=%{commit0}; echo ${c:0:7})
e49aad
f05580
%define ver 18.11
caa5b4
%define rel 4
e49aad
f05580
%define srcname dpdk
e49aad
e49aad
Name: dpdk
e49aad
Version: %{ver}
f05580
Release: %{rel}%{?commit0:.%{date}git%{shortcommit0}}%{?dist}
e49aad
URL: http://dpdk.org
f05580
%if 0%{?commit0:1}
f05580
Source: http://dpdk.org/browse/dpdk/snapshot/dpdk-%{commit0}.tar.xz
f05580
%else
f05580
Source: http://fast.dpdk.org/rel/dpdk-%{ver}.tar.xz
f05580
%endif
e49aad
e49aad
# Only needed for creating snapshot tarballs, not used in build itself
e49aad
Source100: dpdk-snapshot.sh
e49aad
e49aad
Source500: configlib.sh
e49aad
Source501: gen_config_group.sh
e49aad
Source502: set_config.sh
e49aad
e49aad
# Important: source503 is used as the actual copy file
e49aad
# @TODO: this causes a warning - fix it?
e49aad
Source504: arm64-armv8a-linuxapp-gcc-config
e49aad
Source505: ppc_64-power8-linuxapp-gcc-config
e49aad
Source506: x86_64-native-linuxapp-gcc-config
e49aad
045d85
# Patches only in dpdk package
045d85
Patch0: 0001-bus-vmbus-fix-race-in-subchannel-creation.patch
045d85
Patch1: 0002-net-netvsc-enable-SR-IOV.patch
045d85
Patch2: 0003-net-netvsc-disable-multi-queue-on-older-servers.patch
caa5b4
Patch3: 0004-net-virtio-set-offload-flag-for-jumbo-frames.patch
045d85
e49aad
Summary: Set of libraries and drivers for fast packet processing
e49aad
e49aad
#
e49aad
# Note that, while this is dual licensed, all code that is included with this
e49aad
# Pakcage are BSD licensed. The only files that aren't licensed via BSD is the
e49aad
# kni kernel module which is dual LGPLv2/BSD, and thats not built for fedora.
e49aad
#
e49aad
License: BSD and LGPLv2 and GPLv2
e49aad
e49aad
#
e49aad
# The DPDK is designed to optimize througput of network traffic using, among
e49aad
# other techniques, carefully crafted assembly instructions.  As such it
e49aad
# needs extensive work to port it to other architectures.
e49aad
ExclusiveArch: x86_64 aarch64 ppc64le
e49aad
e49aad
# machine_arch maps between rpm and dpdk arch name, often same as _target_cpu
e49aad
# machine_tmpl is the config template machine name, often "native"
e49aad
# machine is the actual machine name used in the dpdk make system
e49aad
%ifarch x86_64
e49aad
%define machine_arch x86_64
e49aad
%define machine_tmpl native
e49aad
%define machine default
e49aad
%endif
e49aad
%ifarch aarch64
e49aad
%define machine_arch arm64
e49aad
%define machine_tmpl armv8a
e49aad
%define machine armv8a
e49aad
%endif
e49aad
%ifarch ppc64le
e49aad
%define machine_arch ppc_64
e49aad
%define machine_tmpl power8
e49aad
%define machine power8
e49aad
%endif
e49aad
e49aad
%define target %{machine_arch}-%{machine_tmpl}-linuxapp-gcc
e49aad
e49aad
%define sdkdir  %{_datadir}/%{name}
e49aad
%define docdir  %{_docdir}/%{name}
e49aad
%define incdir  %{_includedir}/%{name}
e49aad
%define pmddir %{_libdir}/%{name}-pmds
e49aad
f05580
%if 0%{?rhel} > 7 || 0%{?fedora}
f05580
%define _py python3
f05580
%define _py_exec %{?__python3}
f05580
%else
f05580
%define _py python
f05580
%define _py_exec %{?__python2}
f05580
%endif
f05580
a6040a
BuildRequires: gcc, kernel-headers, zlib-devel, numactl-devel
f05580
BuildRequires: doxygen, %{_py}-devel, %{_py}-sphinx
a6040a
%ifarch x86_64
f05580
BuildRequires: rdma-core-devel >= 15 libmnl-devel
a6040a
%global __requires_exclude_from ^%{_libdir}/librte_pmd_mlx[45]_glue\.so.*$
a6040a
%endif
e49aad
e49aad
%description
e49aad
The Data Plane Development Kit is a set of libraries and drivers for
e49aad
fast packet processing in the user space.
e49aad
e49aad
%package devel
e49aad
Summary: Data Plane Development Kit development files
e49aad
Requires: %{name}%{?_isa} = %{version}-%{release}
e49aad
e49aad
%description devel
e49aad
This package contains the headers and other files needed for developing
e49aad
applications with the Data Plane Development Kit.
e49aad
e49aad
%package doc
e49aad
Summary: Data Plane Development Kit API documentation
e49aad
BuildArch: noarch
e49aad
e49aad
%description doc
e49aad
API programming documentation for the Data Plane Development Kit.
e49aad
e49aad
%if %{with tools}
e49aad
%package tools
e49aad
Summary: Tools for setting up Data Plane Development Kit environment
e49aad
Requires: %{name} = %{version}-%{release}
f05580
Requires: kmod pciutils findutils iproute %{_py_exec}
e49aad
e49aad
%description tools
e49aad
%{summary}
e49aad
%endif
e49aad
e49aad
%if %{with examples}
e49aad
%package examples
e49aad
Summary: Data Plane Development Kit example applications
e49aad
BuildRequires: libvirt-devel
e49aad
e49aad
%description examples
e49aad
Example applications utilizing the Data Plane Development Kit, such
e49aad
as L2 and L3 forwarding.
e49aad
%endif
e49aad
e49aad
%prep
f05580
%autosetup -n %{srcname}-%{?commit0:%{commit0}}%{!?commit0:%{ver}} -p1
e49aad
e49aad
%build
e49aad
# In case dpdk-devel is installed
e49aad
unset RTE_SDK RTE_INCLUDE RTE_TARGET
e49aad
e49aad
# Avoid appending second -Wall to everything, it breaks upstream warning
e49aad
# disablers in makefiles. Strip expclit -march= from optflags since they
e49aad
# will only guarantee build failures, DPDK is picky with that.
e49aad
export EXTRA_CFLAGS="$(echo %{optflags} | sed -e 's:-Wall::g' -e 's:-march=[[:alnum:]]* ::g') -Wformat -fPIC"
e49aad
e49aad
# DPDK defaults to using builder-specific compiler flags.  However,
e49aad
# the config has been changed by specifying CONFIG_RTE_MACHINE=default
e49aad
# in order to build for a more generic host.  NOTE: It is possible that
e49aad
# the compiler flags used still won't work for all Fedora-supported
e49aad
# machines, but runtime checks in DPDK will catch those situations.
e49aad
e49aad
make V=1 O=%{target} T=%{target} %{?_smp_mflags} config
e49aad
e49aad
cp -f %{SOURCE500} %{SOURCE502} "%{_sourcedir}/%{target}-config" .
e49aad
%{SOURCE502} %{target}-config "%{target}/.config"
e49aad
e49aad
make V=1 O=%{target} %{?_smp_mflags} 
e49aad
e49aad
# Creating PDF's has excessive build-requirements, html docs suffice fine
e49aad
make V=1 O=%{target} %{?_smp_mflags} doc-api-html doc-guides-html
e49aad
e49aad
%if %{with examples}
e49aad
make V=1 O=%{target}/examples T=%{target} %{?_smp_mflags} examples
e49aad
%endif
e49aad
e49aad
%install
e49aad
# In case dpdk-devel is installed
e49aad
unset RTE_SDK RTE_INCLUDE RTE_TARGET
e49aad
e49aad
%make_install O=%{target} prefix=%{_usr} libdir=%{_libdir}
e49aad
f05580
# Replace /usr/bin/env python with the correct python binary
f05580
find %{buildroot}%{sdkdir}/ -name "*.py" -exec \
f05580
  sed -i -e 's|#!\s*/usr/bin/env python|#!%{_py_exec}|' {} +
f05580
e49aad
# Create a driver directory with symlinks to all pmds
e49aad
mkdir -p %{buildroot}/%{pmddir}
e49aad
for f in %{buildroot}/%{_libdir}/*_pmd_*.so.*; do
e49aad
    bn=$(basename ${f})
a6040a
%ifarch x86_64
a6040a
    case $bn in
a6040a
    librte_pmd_mlx[45]_glue.so.*)
a6040a
        mkdir -p %{buildroot}/%{pmddir}-glue
a6040a
        ln -s ../${bn} %{buildroot}%{pmddir}-glue/${bn}
a6040a
        continue
a6040a
        ;;
a6040a
    esac
a6040a
%endif
e49aad
    ln -s ../${bn} %{buildroot}%{pmddir}/${bn}
e49aad
done
e49aad
e49aad
%if ! %{with tools}
e49aad
rm -rf %{buildroot}%{sdkdir}/usertools
e49aad
rm -rf %{buildroot}%{_sbindir}/dpdk-devbind
e49aad
%endif
e49aad
rm -f %{buildroot}%{sdkdir}/usertools/dpdk-setup.sh
f05580
rm -f %{buildroot}%{sdkdir}/usertools/meson.build
ab2f3a
rm -f %{buildroot}%{_bindir}/dpdk-pmdinfo
e49aad
rm -f %{buildroot}%{_bindir}/dpdk-test-crypto-perf
ab2f3a
rm -f %{buildroot}%{_bindir}/dpdk-test-eventdev
e49aad
e49aad
%if %{with examples}
e49aad
find %{target}/examples/ -name "*.map" | xargs rm -f
e49aad
for f in %{target}/examples/*/%{target}/app/*; do
e49aad
    bn=`basename ${f}`
e49aad
    cp -p ${f} %{buildroot}%{_bindir}/dpdk-${bn}
e49aad
done
e49aad
%else
e49aad
rm -rf %{buildroot}%{sdkdir}/examples
e49aad
%endif
e49aad
e49aad
# Setup RTE_SDK environment as expected by apps etc
e49aad
mkdir -p %{buildroot}/%{_sysconfdir}/profile.d
e49aad
cat << EOF > %{buildroot}/%{_sysconfdir}/profile.d/dpdk-sdk-%{_arch}.sh
e49aad
if [ -z "\${RTE_SDK}" ]; then
e49aad
    export RTE_SDK="%{sdkdir}"
e49aad
    export RTE_TARGET="%{target}"
e49aad
    export RTE_INCLUDE="%{incdir}"
e49aad
fi
e49aad
EOF
e49aad
e49aad
cat << EOF > %{buildroot}/%{_sysconfdir}/profile.d/dpdk-sdk-%{_arch}.csh
e49aad
if ( ! \$RTE_SDK ) then
e49aad
    setenv RTE_SDK "%{sdkdir}"
e49aad
    setenv RTE_TARGET "%{target}"
e49aad
    setenv RTE_INCLUDE "%{incdir}"
e49aad
endif
e49aad
EOF
e49aad
e49aad
# Fixup target machine mismatch
e49aad
sed -i -e 's:-%{machine_tmpl}-:-%{machine}-:g' %{buildroot}/%{_sysconfdir}/profile.d/dpdk-sdk*
e49aad
e49aad
%files
e49aad
# BSD
e49aad
%doc README MAINTAINERS
e49aad
%{_bindir}/testpmd
e49aad
%{_bindir}/dpdk-procinfo
e49aad
%{_bindir}/dpdk-pdump
e49aad
%dir %{pmddir}
e49aad
%{_libdir}/*.so.*
e49aad
%{pmddir}/*.so.*
a6040a
%ifarch x86_64
a6040a
%dir %{pmddir}-glue
a6040a
%{pmddir}-glue/*.so.*
a6040a
%endif
e49aad
e49aad
%files doc
e49aad
#BSD
e49aad
%{docdir}
e49aad
e49aad
%files devel
e49aad
#BSD
e49aad
%{incdir}/
e49aad
%{sdkdir}/
e49aad
%if %{with tools}
e49aad
%exclude %{sdkdir}/usertools/
e49aad
%endif
e49aad
%if %{with examples}
e49aad
%exclude %{sdkdir}/examples/
e49aad
%endif
e49aad
%{_sysconfdir}/profile.d/dpdk-sdk-*.*
e49aad
%{_libdir}/*.so
e49aad
%if %{with examples}
e49aad
%files examples
e49aad
%exclude %{_bindir}/dpdk-procinfo
e49aad
%exclude %{_bindir}/dpdk-pdump
e49aad
%{_bindir}/dpdk-*
e49aad
%doc %{sdkdir}/examples/
e49aad
%endif
e49aad
e49aad
%if %{with tools}
e49aad
%files tools
e49aad
%{sdkdir}/usertools/
e49aad
%{_sbindir}/dpdk-devbind
e49aad
%endif
e49aad
e49aad
%changelog
caa5b4
* Mon Feb 18 2019 Jens Freimann <jfreiman@redhat.com> - 18.11-4
caa5b4
- Set correct offload flags for virtio and allow jumbo frames (#1669355)
caa5b4
045d85
* Wed Feb 06 2019 Maxime Coquelin <maxime.coquelin@redhat.com> - 18.11.3
045d85
- Backport NETVSC pmd fixes (#1662292)
045d85
f05580
* Tue Nov 27 2018 Timothy Redaelli <tredaelli@redhat.com> - 18.11-2
f05580
- Fix python scripts hashbang
f05580
- Remove meson.build from dpdk-tools
f05580
f05580
* Tue Nov 27 2018 Timothy Redaelli <tredaelli@redhat.com> - 18.11-1
f05580
- Add conditionals to build on RHEL8 and Fedora
f05580
- Updated to DPDK 18.11 (#1651337):
f05580
  - Updated configs
f05580
  - Added libmnl-devel BuildRequires for Mellanox
f05580
343f6f
* Mon Nov 05 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-15
343f6f
- Re-align with DPDK patches inside OVS FDP 18.11 (#1646598)
343f6f
343f6f
* Fri Sep 14 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-14
343f6f
- Backport "net/mlx{4,5}: avoid stripping the glue library" (#1627285)
343f6f
ab2f3a
* Tue Jul 31 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-13
ab2f3a
- Re-align with DPDK patches inside OVS FDP 18.08 (#1610407)
ab2f3a
- Backport "net/i40e: fix port segmentation fault when restart" (#1610481)
ab2f3a
ab2f3a
* Mon Jul 23 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-12
ab2f3a
- Remove dpdk-pmdinfo (#1494462)
ab2f3a
a6040a
* Thu Jun 14 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-11
a6040a
- Re-align with DPDK patches inside OVS FDP 18.06 (#1591198)
a6040a
a6040a
* Mon Jun 11 2018 Aaron Conole <aconole@redhat.com> - 17.11-10
a6040a
- Fix mlx5 memory region boundary checks (#1581230)
a6040a
a6040a
* Thu Jun 07 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-9
a6040a
- Add 2 missing QEDE patches
a6040a
- Fix previous changelog date
a6040a
a6040a
* Thu Jun 07 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-8
a6040a
- Align with DPDK patches inside OVS FDP 18.06
a6040a
- Enable BNXT, MLX4, MLX5, NFP and QEDE PMDs
a6040a
- Backport "net/mlx: fix rdma-core glue path with EAL plugins" (only needed on
a6040a
  DPDK package)
a6040a
e49aad
* Wed Jan 31 2018 Kevin Traynor <ktraynor@redhat.com> - 17.11-7
e49aad
- Backport to forbid IOVA mode if IOMMU address width too small (#1530957)
e49aad
e49aad
* Wed Jan 31 2018 Aaron Conole <aconole@redhat.com> - 17.11-6
e49aad
- Backport to protect active vhost_user rings (#1525446)
e49aad
e49aad
* Tue Jan 09 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-5
e49aad
- Real backport of "net/virtio: fix vector Rx break caused by rxq flushing"
e49aad
e49aad
* Thu Dec 14 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-4
e49aad
- Backport "net/virtio: fix vector Rx break caused by rxq flushing"
e49aad
e49aad
* Wed Dec 06 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-3
e49aad
- Enable ENIC only for x86_64
e49aad
e49aad
* Wed Dec 06 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-2
e49aad
- Re-add main package dependency from dpdk-tools
e49aad
- Add explicit python dependency to dpdk-tools
e49aad
e49aad
* Tue Nov 28 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-1
e49aad
- Update to DPDK 17.11 (#1522700)
e49aad
- Use a static configuration file
e49aad
- Remove i686 from ExclusiveArch since it's not supported on RHEL7
e49aad
- Remove "--without shared" support
e49aad
e49aad
* Fri Oct 13 2017 Josh Boyer <jwboyer@redhat.com> - 16.11.2-6
e49aad
- Rebuild to pick up all arches
e49aad
e49aad
* Fri Oct 13 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11.2-5
e49aad
- Enable only supported PMDs (#1497384)
e49aad
e49aad
* Fri Jun 23 2017 John W. Linville <linville@redhat.com> - 16.11.2-4
e49aad
- Backport "eal/ppc: fix mmap for memory initialization"
e49aad
e49aad
* Fri Jun 09 2017 John W. Linville <linville@redhat.com> - 16.11.2-3
e49aad
- Enable i40e driver in PowerPC along with its altivec intrinsic support
e49aad
- Add PCI probing support for vfio-pci devices in Power8
e49aad
e49aad
* Thu Jun 08 2017 John W. Linville <linville@redhat.com> - 16.11.2-2
e49aad
- Enable aarch64, ppc64le (#1428587)
e49aad
e49aad
* Thu Jun 08 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11.2-1
e49aad
- Import from fdProd
e49aad
- Update to 16.11.2 (#1459333)
e49aad
e49aad
* Wed Mar 22 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11-4
e49aad
- Avoid infinite loop while linking with libdpdk.so (#1434907)
e49aad
e49aad
* Thu Feb 02 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11-3
e49aad
- Make driverctl a different package
e49aad
e49aad
* Thu Dec 08 2016 Kevin Traynor <ktraynor@redhat.com> - 16.11-2
e49aad
- Update to DPDK 16.11 (#1335865)
e49aad
e49aad
* Wed Oct 05 2016 Panu Matilainen <pmatilai@redhat.com> - 16.07-1
e49aad
- Update to DPDK 16.07 (#1383195)
e49aad
- Disable unstable bnx2x driver (#1330589)
e49aad
- Enable librte_vhost NUMA support again (#1279525)
e49aad
- Enable librte_cryptodev, its no longer considered experimental
e49aad
- Change example prefix to dpdk- for consistency with other utilities
e49aad
- Update driverctl to 0.89
e49aad
e49aad
* Thu Jul 21 2016 Flavio Leitner <fbl@redhat.com> - 16.04-4
e49aad
- Updated to DPDK 16.04
e49aad
e49aad
* Wed Mar 16 2016 Panu Matilainen <pmatilai@redhat.com> - 2.2.0-3
e49aad
- Disable librte_vhost NUMA support for now, it causes segfaults
e49aad
e49aad
* Wed Jan 27 2016 Panu Matilainen <pmatilai@redhat.com> - 2.2.0-2
e49aad
- Use a different quoting method to avoid messing up vim syntax highlighting
e49aad
- A string is expected as CONFIG_RTE_MACHINE value, quote it too
e49aad
- Enable librte_vhost NUMA-awareness
e49aad
e49aad
* Tue Jan 12 2016 Panu Matilainen <pmatilai@redhat.com> - 2.2.0-1
e49aad
- Update DPDK to 2.2.0 final
e49aad
- Add README and MAINTAINERS docs
e49aad
- Adopt new upstream standard installation layout, including
e49aad
  dpdk_nic_bind.py renamed to dpdk_nic_bind
e49aad
- Move the unversioned pmd symlinks from libdir -devel
e49aad
- Establish a driver directory for automatic driver loading
e49aad
- Disable CONFIG_RTE_SCHED_VECTOR, it conflicts with CONFIG_RTE_MACHINE default
e49aad
- Disable experimental cryptodev library
e49aad
- More complete dtneeded patch
e49aad
- Make option matching stricter in spec setconf
e49aad
- Update driverctl to 0.59
e49aad
e49aad
* Wed Dec 09 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-5
e49aad
- Fix artifacts from driverctl having different version
e49aad
- Update driverctl to 0.58
e49aad
e49aad
* Fri Nov 13 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-4
e49aad
- Add driverctl sub-package
e49aad
e49aad
* Fri Oct 23 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-3
e49aad
- Enable bnx2x pmd, which buildrequires zlib-devel
e49aad
e49aad
* Mon Sep 28 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-2
e49aad
- Make lib and include available both ways in the SDK paths
e49aad
e49aad
* Thu Sep 24 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-1
e49aad
- Update to dpdk 2.1.0 final
e49aad
  - Disable ABI_NEXT
e49aad
  - Rebase patches as necessary
e49aad
  - Fix build of ip_pipeline example
e49aad
  - Drop no longer needed -Wno-error=array-bounds
e49aad
  - Rename libintel_dpdk to libdpdk
e49aad
e49aad
* Tue Aug 11 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-9
e49aad
- Drop main package dependency from dpdk-tools
e49aad
e49aad
* Wed May 20 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-8
e49aad
- Drop eventfd-link patch, its only needed for vhost-cuse
e49aad
e49aad
* Tue May 19 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-7
e49aad
- Drop pointless build conditional, the linker script is here to stay
e49aad
- Drop vhost-cuse build conditional, vhost-user is here to stay
e49aad
- Cleanup comments a bit
e49aad
- Enable parallel build again
e49aad
- Dont build examples by default
e49aad
e49aad
* Thu Apr 30 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-6
e49aad
- Fix potential hang and thread issues with VFIO eventfd
e49aad
e49aad
* Fri Apr 24 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-5
e49aad
- Fix a potential hang due to missed interrupt in vhost library
e49aad
e49aad
* Tue Apr 21 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-4
e49aad
- Drop unused pre-2.0 era patches
e49aad
- Handle vhost-user/cuse selection automatically based on the copr repo name
e49aad
e49aad
* Fri Apr 17 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-3
e49aad
- Dont depend on fuse when built for vhost-user support
e49aad
- Drop version from testpmd binary, we wont be parallel-installing that
e49aad
e49aad
* Thu Apr 09 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-2
e49aad
- Remove the broken kmod stuff
e49aad
- Add a new dkms-based eventfd_link subpackage if vhost-cuse is enabled
e49aad
e49aad
* Tue Apr 07 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-1
e49aad
- Update to 2.0 final (http://dpdk.org/doc/guides-2.0/rel_notes/index.html)
e49aad
e49aad
* Thu Apr 02 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2086.git263333bb.2
e49aad
- Switch (back) to vhost-user, thus disabling vhost-cuse support
e49aad
- Build requires fuse-devel for now even when fuse is unused
e49aad
e49aad
* Mon Mar 30 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2049.git2f95a470.1
e49aad
- New snapshot
e49aad
- Add spec option for enabling vhost-user instead of vhost-cuse
e49aad
- Build requires fuse-devel only with vhost-cuse
e49aad
- Add virtual provide for vhost user/cuse tracking 
e49aad
e49aad
* Fri Mar 27 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2038.git91a8743e.3
e49aad
- Disable vhost-user for now to get vhost-cuse support, argh.
e49aad
e49aad
* Fri Mar 27 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2038.git91a8743e.2
e49aad
- Add a bunch of missing dependencies to -tools
e49aad
e49aad
* Thu Mar 26 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2038.git91a8743e.1
e49aad
- Another day, another snapshot
e49aad
- Disable IVSHMEM support for now
e49aad
e49aad
* Fri Mar 20 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2022.gitfe4810a0.2
e49aad
- Dont fail build for array bounds warnings for now, gcc 5 is emitting a bunch
e49aad
e49aad
* Fri Mar 20 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2022.gitfe4810a0.1
e49aad
- Another day, another snapshot
e49aad
- Avoid building pdf docs
e49aad
e49aad
* Tue Mar 03 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1916.gita001589e.2
e49aad
- Add missing dependency to tools -subpackage
e49aad
e49aad
* Tue Mar 03 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1916.gita001589e.1
e49aad
- New snapshot
e49aad
- Work around #1198009
e49aad
e49aad
* Mon Mar 02 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1911.gitffc468ff.2
e49aad
- Optionally package tools too, some binding script is needed for many setups
e49aad
e49aad
* Mon Mar 02 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1911.gitffc468ff.1
e49aad
- New snapshot
e49aad
- Disable kernel module build by default
e49aad
- Add patch to fix missing defines/includes for external applications
e49aad
e49aad
* Fri Feb 27 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1906.git00c68563.1
e49aad
- New snapshot
e49aad
- Remove bogus devname module alias from eventfd-link module
e49aad
- Whack evenfd-link to honor RTE_KERNELDIR too
e49aad
e49aad
* Thu Feb 26 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1903.gitb67578cc.3
e49aad
- Add spec option to build kernel modules too
e49aad
- Build eventfd-link module too if kernel modules enabled
e49aad
e49aad
* Thu Feb 26 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1903.gitb67578cc.2
e49aad
- Move config changes from spec after "make config" to simplify things
e49aad
- Move config changes from dpdk-config patch to the spec
e49aad
e49aad
* Thu Feb 19 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1717.gitd3aa5274.2
e49aad
- Fix warnings tripping up build with gcc 5, remove -Wno-error
e49aad
e49aad
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1698.gitc07691ae.1
e49aad
- Move the unversioned .so links for plugins into main package
e49aad
- New snapshot
e49aad
e49aad
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1695.gitc2ce3924.3
e49aad
- Fix missing symbol export for rte_eal_iopl_init()
e49aad
- Only mention libs once in the linker script
e49aad
e49aad
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1695.gitc2ce3924.2
e49aad
- Fix gcc version logic to work with 5.0 too
e49aad
e49aad
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1695.gitc2ce3924.1
e49aad
- Add spec magic to easily switch between stable and snapshot versions
e49aad
- Add tarball snapshot script for reference
e49aad
- Update to pre-2.0 git snapshot
e49aad
e49aad
* Thu Feb 12 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-15
e49aad
- Disable -Werror, this is not useful behavior for released versions
e49aad
e49aad
* Wed Feb 11 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-14
e49aad
- Fix typo causing librte_vhost missing DT_NEEDED on fuse
e49aad
e49aad
* Wed Feb 11 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-13
e49aad
- Fix vhost library linkage
e49aad
- Add spec option to build example applications, enable by default
e49aad
e49aad
* Fri Feb 06 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-12
e49aad
- Enable librte_acl build
e49aad
- Enable librte_ivshmem build
e49aad
e49aad
* Thu Feb 05 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-11
e49aad
- Drop the private libdir, not needed with versioned libs
e49aad
e49aad
* Thu Feb 05 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-10
e49aad
- Drop symbol versioning patches, always do library version for shared
e49aad
- Add comment on the combined library thing
e49aad
e49aad
* Wed Feb 04 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-9
e49aad
- Add missing symbol version to librte_cmdline
e49aad
e49aad
* Tue Feb 03 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-8
e49aad
- Set soname of the shared libraries
e49aad
- Fixup typo in ld path config file name
e49aad
e49aad
* Tue Feb 03 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-7
e49aad
- Add library versioning patches as another build option, enable by default
e49aad
e49aad
* Tue Feb 03 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-6
e49aad
- Add our libraries to ld path & run ldconfig when using shared libs
e49aad
e49aad
* Fri Jan 30 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-5
e49aad
- Add DT_NEEDED for external dependencies (pcap, fuse, dl, pthread)
e49aad
- Enable combined library creation, needed for OVS
e49aad
- Enable shared library creation, needed for sanity
e49aad
e49aad
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-4
e49aad
- Include scripts directory in the "sdk" too
e49aad
e49aad
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-3
e49aad
- Fix -Wformat clash preventing i40e driver build, enable it
e49aad
- Fix -Wall clash preventing enic driver build, enable it
e49aad
e49aad
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-2
e49aad
- Enable librte_vhost, which buildrequires fuse-devel
e49aad
- Enable physical NIC drivers that build (e1000, ixgbe) for VFIO use
e49aad
e49aad
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-1
e49aad
- Update to 1.8.0
e49aad
e49aad
* Wed Jan 28 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-8
e49aad
- Always build with -fPIC
e49aad
e49aad
* Wed Jan 28 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-7
e49aad
- Policy compliance: move static libraries to -devel, provide dpdk-static
e49aad
- Add a spec option to build as shared libraries
e49aad
e49aad
* Wed Jan 28 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-6
e49aad
- Avoid variable expansion in the spec here-documents during build
e49aad
- Drop now unnecessary debug flags patch
e49aad
- Add a spec option to build a combined library
e49aad
e49aad
* Tue Jan 27 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-5
e49aad
- Avoid unnecessary use of %%global, lazy expansion is normally better
e49aad
- Drop unused destdir macro while at it
e49aad
- Arrange for RTE_SDK environment + directory layout expected by DPDK apps
e49aad
- Drop config from main package, it shouldn't be needed at runtime
e49aad
e49aad
* Tue Jan 27 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-4
e49aad
- Copy the headers instead of broken symlinks into -devel package
e49aad
- Force sane mode on the headers
e49aad
- Avoid unnecessary %%exclude by not copying unpackaged content to buildroot
e49aad
- Clean up summaries and descriptions
e49aad
- Drop unnecessary kernel-devel BR, we are not building kernel modules
e49aad
e49aad
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-3
e49aad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e49aad
e49aad
* Thu Jul 17 2014 - John W. Linville <linville@redhat.com> - 1.7.0-2
e49aad
- Use EXTRA_CFLAGS to include standard Fedora compiler flags in build
e49aad
- Set CONFIG_RTE_MACHINE=default to build for least-common-denominator machines
e49aad
- Turn-off build of librte_acl, since it does not build on default machines
e49aad
- Turn-off build of physical device PMDs that require kernel support
e49aad
- Clean-up the install rules to match current packaging
e49aad
- Correct changelog versions 1.0.7 -> 1.7.0
e49aad
- Remove ix86 from ExclusiveArch -- it does not build with above changes
e49aad
e49aad
* Thu Jul 10 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-1.0
e49aad
- Update source to official 1.7.0 release 
e49aad
e49aad
* Thu Jul 03 2014 - Neil Horman <nhorman@tuxdriver.com>
e49aad
- Fixing up release numbering
e49aad
e49aad
* Tue Jul 01 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.9.1.20140603git5ebbb1728
e49aad
- Fixed some build errors (empty debuginfo, bad 32 bit build)
e49aad
e49aad
* Wed Jun 11 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.9.20140603git5ebbb1728
e49aad
- Fix another build dependency
e49aad
e49aad
* Mon Jun 09 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.8.20140603git5ebbb1728
e49aad
- Fixed doc arch versioning issue
e49aad
e49aad
* Mon Jun 09 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.7.20140603git5ebbb1728
e49aad
- Added verbose output to build
e49aad
e49aad
* Tue May 13 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.6.20140603git5ebbb1728
e49aad
- Initial Build
e49aad