Blame SPECS/dpdk.spec

aed176
# Add option to build with examples
aed176
%bcond_with examples
aed176
# Add option to build without tools
aed176
%bcond_without tools
aed176
aed176
# Dont edit Version: and Release: directly, only these:
f93759
#% define commit0 7001c8fdb27357c67147c0a13cb3826e48c0f2bf
f93759
#% define date 20191128
aed176
#% define shortcommit0 %(c=%{commit0}; echo ${c:0:7})
aed176
394c7f
%define ver 21.11
394c7f
%define rel 1
aed176
b929a8
%define srcname dpdk
b929a8
aed176
Name: dpdk
aed176
Version: %{ver}
aed176
Release: %{rel}%{?commit0:.%{date}git%{shortcommit0}}%{?dist}
aed176
URL: http://dpdk.org
aed176
%if 0%{?commit0:1}
aed176
Source: http://dpdk.org/browse/dpdk/snapshot/dpdk-%{commit0}.tar.xz
aed176
%else
aed176
Source: http://fast.dpdk.org/rel/dpdk-%{ver}.tar.xz
aed176
%endif
aed176
aed176
# Only needed for creating snapshot tarballs, not used in build itself
aed176
Source100: dpdk-snapshot.sh
aed176
aed176
# Patches only in dpdk package
2c1bf6
2c1bf6
aed176
Summary: Set of libraries and drivers for fast packet processing
aed176
aed176
#
aed176
# Note that, while this is dual licensed, all code that is included with this
aed176
# Pakcage are BSD licensed. The only files that aren't licensed via BSD is the
aed176
# kni kernel module which is dual LGPLv2/BSD, and thats not built for fedora.
aed176
#
aed176
License: BSD and LGPLv2 and GPLv2
aed176
aed176
#
aed176
# The DPDK is designed to optimize througput of network traffic using, among
aed176
# other techniques, carefully crafted assembly instructions.  As such it
aed176
# needs extensive work to port it to other architectures.
aed176
ExclusiveArch: x86_64 aarch64 ppc64le
aed176
aed176
%define sdkdir  %{_datadir}/%{name}
aed176
%define docdir  %{_docdir}/%{name}
aed176
%define incdir  %{_includedir}/%{name}
b929a8
%define pmddir  %{_libdir}/%{name}-pmds
b929a8
394c7f
%if 0%{?rhel} && 0%{?rhel} < 9
394c7f
# Fix conflicts with README and MAINTAINERS (included in dpdk-doc < 18.11-2),
394c7f
# this affects only RHEL8.
aed176
Conflicts: dpdk-doc < 18.11-2
aed176
%endif
aed176
394c7f
BuildRequires: meson
394c7f
%if 0%{?rhel} && 0%{?rhel} < 9
394c7f
%define pyelftoolsver 0.27
394c7f
Source1: https://github.com/eliben/pyelftools/archive/refs/tags/v%{pyelftoolsver}.tar.gz#/pyelftools-%{pyelftoolsver}.tar.gz
394c7f
%else
394c7f
BuildRequires: python3-pyelftools
394c7f
%endif
394c7f
BuildRequires: gcc, zlib-devel, numactl-devel
394c7f
BuildRequires: doxygen, python3-sphinx
aed176
%ifarch x86_64
b929a8
BuildRequires: rdma-core-devel >= 15
b929a8
%endif
b929a8
b929a8
# Macros taked from ninja-build and meson packages and adapted to be defined here
b929a8
# See /usr/lib/rpm/macros.d/macros.{ninja,meson}
b929a8
%if 0%{?rhel} && 0%{?rhel} < 8
b929a8
b929a8
# RHEL-7 doesn't define _vpath_* macros yet
b929a8
%if 0%{!?_vpath_srcdir:1}
b929a8
%define _vpath_srcdir .
b929a8
%endif
b929a8
%if 0%{!?_vpath_builddir:1}
b929a8
%define _vpath_builddir %_target_platform
b929a8
%endif
b929a8
b929a8
%define __ninja %{venvdir}/bin/ninja
b929a8
%define __ninja_common_opts -v %{?_smp_mflags}
b929a8
b929a8
%define ninja_build \
b929a8
    %{__ninja} %{__ninja_common_opts}
b929a8
b929a8
%define ninja_install \
b929a8
    DESTDIR=%{buildroot} %{__ninja} install %{__ninja_common_opts}
b929a8
b929a8
%define ninja_test \
b929a8
    %{__ninja} test %{__ninja_common_opts}
b929a8
b929a8
%define __meson %{venvdir}/bin/meson
b929a8
%define __meson_wrap_mode nodownload
b929a8
%define __meson_auto_features enabled
b929a8
b929a8
%define meson \
b929a8
    export CFLAGS="${CFLAGS:-%__global_cflags}"       \
b929a8
    export CXXFLAGS="${CXXFLAGS:-%__global_cxxflags}" \
b929a8
    export FFLAGS="${FFLAGS:-%__global_fflags}"       \
b929a8
    export FCFLAGS="${FCFLAGS:-%__global_fcflags}"    \
b929a8
    export LDFLAGS="${LDFLAGS:-%__global_ldflags}"    \
b929a8
    %{__meson}                                    \\\
b929a8
        --buildtype=plain                         \\\
b929a8
        --prefix=%{_prefix}                       \\\
b929a8
        --libdir=%{_libdir}                       \\\
b929a8
        --libexecdir=%{_libexecdir}               \\\
b929a8
        --bindir=%{_bindir}                       \\\
b929a8
        --sbindir=%{_sbindir}                     \\\
b929a8
        --includedir=%{_includedir}               \\\
b929a8
        --datadir=%{_datadir}                     \\\
b929a8
        --mandir=%{_mandir}                       \\\
b929a8
        --infodir=%{_infodir}                     \\\
b929a8
        --localedir=%{_datadir}/locale            \\\
b929a8
        --sysconfdir=%{_sysconfdir}               \\\
b929a8
        --localstatedir=%{_localstatedir}         \\\
b929a8
        --sharedstatedir=%{_sharedstatedir}       \\\
b929a8
        --wrap-mode=%{__meson_wrap_mode}          \\\
b929a8
        --auto-features=%{__meson_auto_features}  \\\
b929a8
        %{_vpath_srcdir} %{_vpath_builddir}       \\\
b929a8
        %{nil}
b929a8
b929a8
%define meson_build \
b929a8
    %ninja_build -C %{_vpath_builddir}
b929a8
b929a8
%define meson_install \
b929a8
    %ninja_install -C %{_vpath_builddir}
b929a8
b929a8
%define meson_test \
b929a8
    %ninja_test -C %{_vpath_builddir}
b929a8
aed176
%endif
aed176
aed176
%description
aed176
The Data Plane Development Kit is a set of libraries and drivers for
aed176
fast packet processing in the user space.
aed176
aed176
%package devel
aed176
Summary: Data Plane Development Kit development files
aed176
Requires: %{name}%{?_isa} = %{version}-%{release}
aea046
%ifarch x86_64
b929a8
Requires: rdma-core-devel
aea046
%endif
aed176
aed176
%description devel
aed176
This package contains the headers and other files needed for developing
aed176
applications with the Data Plane Development Kit.
aed176
aed176
%package doc
aed176
Summary: Data Plane Development Kit API documentation
aed176
BuildArch: noarch
aed176
aed176
%description doc
aed176
API programming documentation for the Data Plane Development Kit.
aed176
aed176
%if %{with tools}
aed176
%package tools
aed176
Summary: Tools for setting up Data Plane Development Kit environment
aed176
Requires: %{name} = %{version}-%{release}
394c7f
Requires: kmod pciutils findutils iproute python3
aed176
aed176
%description tools
aed176
%{summary}
aed176
%endif
aed176
aed176
%if %{with examples}
aed176
%package examples
aed176
Summary: Data Plane Development Kit example applications
aed176
BuildRequires: libvirt-devel
aed176
aed176
%description examples
aed176
Example applications utilizing the Data Plane Development Kit, such
aed176
as L2 and L3 forwarding.
aed176
%endif
aed176
aed176
%prep
394c7f
%if 0%{?rhel} && 0%{?rhel} < 9
394c7f
%setup -q -a 1 -n %{srcname}-%{?commit0:%{commit0}}%{!?commit0:%{ver}}
b929a8
%else
b929a8
%setup -q -n %{srcname}-%{?commit0:%{commit0}}%{!?commit0:%{ver}}
b929a8
%endif
b929a8
%autopatch -p1
aed176
aed176
%build
394c7f
%if 0%{?rhel} && 0%{?rhel} < 9
394c7f
export PYTHONPATH=$(pwd)/pyelftools-%{pyelftoolsver}
aed176
%endif
aed176
b929a8
ENABLED_DRIVERS=(
b929a8
    bus/pci
b929a8
    bus/vdev
b929a8
    mempool/ring
b929a8
    net/failsafe
b929a8
    net/i40e
b929a8
    net/ring
b929a8
    net/vhost
b929a8
    net/virtio
b929a8
    net/tap
b929a8
)
aed176
b929a8
%ifarch x86_64
b929a8
ENABLED_DRIVERS+=(
394c7f
    bus/auxiliary
b929a8
    bus/vmbus
b929a8
    common/iavf
b929a8
    common/mlx5
b929a8
    net/bnxt
b929a8
    net/enic
b929a8
    net/iavf
b929a8
    net/ice
b929a8
    net/mlx4
b929a8
    net/mlx5
b929a8
    net/netvsc
b929a8
    net/nfp
b929a8
    net/qede
b929a8
    net/vdev_netvsc
b929a8
)
b929a8
%endif
aed176
b929a8
%ifarch aarch64 x86_64
b929a8
ENABLED_DRIVERS+=(
b929a8
    net/e1000
b929a8
    net/ixgbe
b929a8
)
b929a8
%endif
aed176
394c7f
for driver in ${ENABLED_DRIVERS[@]}; do
394c7f
    enable_drivers="${enable_drivers:+$enable_drivers,}"$driver
394c7f
done
394c7f
394c7f
# As of 21.11-rc3, following libraries can be disabled:
394c7f
# optional_libs = [
394c7f
#         'bitratestats',
394c7f
#         'gpudev',
394c7f
#         'gro',
394c7f
#         'gso',
394c7f
#         'kni',
394c7f
#         'jobstats',
394c7f
#         'latencystats',
394c7f
#         'metrics',
394c7f
#         'pdump',
394c7f
#         'power',
394c7f
#         'vhost',
394c7f
# ]
394c7f
# If doing any updates, this must be aligned with:
394c7f
# https://access.redhat.com/articles/3538141
394c7f
DISABLED_LIBS=(
394c7f
    gpudev
394c7f
    kni
394c7f
    jobstats
394c7f
    power
394c7f
)
394c7f
394c7f
for lib in "${DISABLED_LIBS[@]}"; do
394c7f
    disable_libs="${disable_libs:+$disable_libs,}"$lib
aed176
done
aed176
b929a8
%meson --includedir=include/dpdk \
b929a8
       --default-library=shared \
394c7f
       -Ddisable_libs="$disable_libs" \
b929a8
       -Ddrivers_install_subdir=dpdk-pmds \
b929a8
       -Denable_docs=true \
394c7f
       -Denable_drivers="$enable_drivers" \
394c7f
       -Dplatform=generic \
b929a8
       -Dmax_ethports=32 \
b929a8
       -Dmax_numa_nodes=8 \
b929a8
       -Dtests=false
394c7f
394c7f
# Check drivers and libraries
394c7f
for driver in "${ENABLED_DRIVERS[@]}"; do
394c7f
	config_token=RTE_$(echo $driver | tr [a-z/] [A-Z_])
394c7f
	! grep -q $config_token */rte_build_config.h || continue
394c7f
	echo "!!! Could not find $driver in rte_build_config.h, please check dependencies. !!!"
394c7f
	false
394c7f
done
394c7f
for lib in "${DISABLED_LIBS[@]}"; do
394c7f
	config_token=RTE_LIB_$(echo $lib | tr [a-z/] [A-Z_])
394c7f
	grep -q $config_token */rte_build_config.h || continue
394c7f
	echo "!!! Found $lib in rte_build_config.h. !!!"
394c7f
	false
394c7f
done
b929a8
%meson_build
aed176
b929a8
%install
b929a8
%if 0%{?rhel} && 0%{?rhel} < 8
b929a8
export PATH="%{venvdir}/bin:$PATH"
aed176
%endif
aed176
b929a8
%meson_install
b929a8
394c7f
rm -f %{buildroot}%{_bindir}/dpdk-dumpcap
b929a8
rm -f %{buildroot}%{_bindir}/dpdk-pdump
b929a8
rm -f %{buildroot}%{_bindir}/dpdk-proc-info
b929a8
rm -f %{buildroot}%{_bindir}/dpdk-test{,-acl,-bbdev,-cmdline,-compress-perf,-crypto-perf,-eventdev,-pipeline,-sad,-fib,-flow-perf,-regex}
b929a8
rm -f %{buildroot}%{_libdir}/*.a
394c7f
# Taked from debian/rules
394c7f
rm -f %{docdir}/html/.buildinfo
394c7f
rm -f %{docdir}/html/objects.inv
394c7f
rm -rf %{docdir}/html/.doctrees
aed176
aed176
%files
aed176
# BSD
aed176
%doc README MAINTAINERS
b929a8
%{_bindir}/dpdk-testpmd
aed176
%dir %{pmddir}
aed176
%{_libdir}/*.so.*
aed176
%{pmddir}/*.so.*
aed176
aed176
%files doc
aed176
#BSD
aed176
%exclude %{docdir}/README
aed176
%exclude %{docdir}/MAINTAINERS
aed176
%{docdir}
aed176
aed176
%files devel
aed176
#BSD
aed176
%{incdir}/
aed176
%{sdkdir}/
aed176
%if %{with tools}
b929a8
%exclude %{_bindir}/dpdk-*.py
aed176
%endif
aed176
%if %{with examples}
aed176
%exclude %{sdkdir}/examples/
aed176
%endif
aed176
%{_libdir}/*.so
b929a8
%{pmddir}/*.so
b929a8
%{_libdir}/pkgconfig/libdpdk.pc
b929a8
%{_libdir}/pkgconfig/libdpdk-libs.pc
aed176
%if %{with examples}
aed176
%files examples
aed176
%{_bindir}/dpdk-*
aed176
%doc %{sdkdir}/examples/
aed176
%endif
aed176
aed176
%if %{with tools}
aed176
%files tools
b929a8
%{_bindir}/dpdk-*.py
aed176
%endif
aed176
aed176
%changelog
394c7f
* Tue Nov 23 2021 David Marchand <david.marchand@redhat.com> - 21.11-1
394c7f
- Rebase to 21.11 (#2029497)
394c7f
b929a8
* Tue Feb 16 2021 Timothy Redaelli <tredaelli@redhat.com> - 20.11-3
b929a8
- Fix gating since on DPDK 20.11 testpmd is called dpdk-testpmd
b929a8
b929a8
* Wed Feb 10 2021 Timothy Redaelli <tredaelli@redhat.com> - 20.11-2
b929a8
- Enable ice PMD for x86_64 (#1927179)
b929a8
b929a8
* Tue Dec 01 2020 Timothy Redaelli <tredaelli@redhat.com> - 20.11-1
b929a8
- Rebase DPDK to 20.11 using meson build system (#1908446)
b929a8
aea046
* Thu Aug 13 2020 Timothy Redaelli <tredaelli@redhat.com> - 19.11.3-1
aea046
- Rebase DPDK to 19.11.3 (#1868708)
aea046
aea046
* Wed May 20 2020 Timothy Redaelli <tredaelli@redhat.com> - 19.11.2-1
aea046
- Rebase DPDK to 19.11.2 (#1836830, #1837024, #1837030, #1837022)
aea046
aea046
* Fri Apr 17 2020 Timothy Redaelli <tredaelli@redhat.com> - 19.11.1-1
aea046
- Rebase DPDK to 19.11.1 (#1824905)
aea046
- Remove dpdk-pmdinfo.py (#1801361)
aea046
- Add Requires: rdma-core-devel libmnl-devel on x86_64 for dpdk-devel (#1813252)
aea046
f93759
* Thu Feb 20 2020 Timothy Redaelli <tredaelli@redhat.com> - 19.11-4
f93759
- Remove MLX{4,5} glue libraries since RHEL 8 ships the correct libibverbs
f93759
  library. (#1805140)
f93759
f93759
* Mon Feb 17 2020 Timothy Redaelli <tredaelli@redhat.com> - 19.11-3
f93759
- Remove /usr/share/dpdk/mk/exec-env/{bsd,linux}app symlinks (#1773889)
f93759
f93759
* Thu Feb 13 2020 Timothy Redaelli <tredaelli@redhat.com> - 19.11-2
f93759
- Add pretrans to handle /usr/share/dpdk/mk/exec-env/{bsd,linux}app (#1773889)
f93759
f93759
* Thu Nov 28 2019 David Marchand <david.marchand@redhat.com> - 19.11-1
f93759
- Rebase to 19.11 (#1773889)
f93759
- Remove dpdk-pdump (#1779229)
f93759
f93759
* Mon Nov 04 2019 Timothy Redaelli <tredaelli@redhat.com> - 18.11.2-4
f93759
- Pass the correct LDFLAGS to host apps (dpdk-pmdinfogen) too (#1755538)
f93759
2c1bf6
* Mon Sep 16 2019 Jens Freimann <jfreimann@redhat.com> - 18.11.2-3
2c1bf6
- Add fix for wrong pointer calculation to fix Covscan issue
2c1bf6
- https://cov01.lab.eng.brq.redhat.com/covscanhub/task/135452/log/added.html
2c1bf6
2c1bf6
* Wed Aug 14 2019 Jens Freimann <jfreimann@redhat.com> - 18.11.2-2
2c1bf6
- Backport "net/virtio: allocate vrings on device NUMA node" (#1700373)
2c1bf6
2c1bf6
* Thu Jun 27 2019 Timothy Redaelli <tredaelli@redhat.com> - 18.11.2-1
2c1bf6
- Updated to DPDK 18.11.2 (#1713704)
2c1bf6
2c1bf6
* Fri May 24 2019 Maxime Coquelin <maxime.coquelin@redhat.com> - 18.11.8
2c1bf6
- Backport "net/virtio: allocate vrings on device NUMA node" (#1525039)
2c1bf6
2c1bf6
* Thu May 23 2019 Timothy Redaelli <tredaelli@redhat.com> - 18.11-7
2c1bf6
- Really use the security cflags (copied from Fedora RPM) (#1703985)
2c1bf6
2c1bf6
* Fri May 17 2019 Maxime Coquelin <maxime.coquelin@redhat.com> - 18.11-6
2c1bf6
- Fix basic CI gating test (#1682308)
2c1bf6
- Add manual gating test (#1682308)
2c1bf6
2c1bf6
* Tue Mar 26 2019 Maxime Coquelin <maxime.coquelin@redhat.com> - 18.11-5
2c1bf6
- Add basic CI gating test (#1682308)
2c1bf6
2c1bf6
* Mon Feb 18 2019 Jens Freimann <jfreiman@redhat.com> - 18.11-4
2c1bf6
- Set correct offload flags for virtio and allow jumbo frames (#1676646)
2c1bf6
aed176
* Mon Feb 18 2019 Maxime Coquelin <maxime.coquelin@redhat.com> - 18.11.3
aed176
- Backport NETVSC pmd fixes (#1676534)
aed176
aed176
* Tue Nov 27 2018 Timothy Redaelli <tredaelli@redhat.com> - 18.11-2
aed176
- Remove meson.build from dpdk-tools
aed176
- Don't install README and MAINTAINERS in dpdk-doc
aed176
aed176
* Tue Nov 27 2018 Timothy Redaelli <tredaelli@redhat.com> - 18.11-1
aed176
- Updated to DPDK 18.11 (#1492326):
aed176
  - Updated configs
aed176
  - Added libmnl-devel BuildRequires for Mellanox
aed176
aed176
* Thu Sep 20 2018 Tomas Orsava <torsava@redhat.com> - 17.11-14
aed176
- Require the Python interpreter directly instead of using the package name
aed176
- Related: rhbz#1619153
aed176
aed176
* Mon Sep 10 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-13
aed176
- Backport "net/mlx{4,5}: Avoid stripping the glue library" (#1609659)
aed176
aed176
* Fri Jul 20 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-12
aed176
- Use python3 packages on RHEL8 and Fedora
aed176
- Remove dpdk-pmdinfo (#1494462)
aed176
- Backport "net/mlx5: fix build with rdma-core v19"
aed176
aed176
* Thu Jun 14 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-11
aed176
- Re-align with DPDK patches inside OVS FDP 18.06 (#1591198)
aed176
aed176
* Mon Jun 11 2018 Aaron Conole <aconole@redhat.com> - 17.11-10
aed176
- Fix mlx5 memory region boundary checks (#1581230)
aed176
aed176
* Thu Jun 07 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-9
aed176
- Add 2 missing QEDE patches
aed176
- Fix previous changelog date
aed176
aed176
* Thu Jun 07 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-8
aed176
- Align with DPDK patches inside OVS FDP 18.06
aed176
- Enable BNXT, MLX4, MLX5, NFP and QEDE PMDs
aed176
- Backport "net/mlx: fix rdma-core glue path with EAL plugins" (only needed on
aed176
  DPDK package)
aed176
aed176
* Wed Jan 31 2018 Kevin Traynor <ktraynor@redhat.com> - 17.11-7
aed176
- Backport to forbid IOVA mode if IOMMU address width too small (#1530957)
aed176
aed176
* Wed Jan 31 2018 Aaron Conole <aconole@redhat.com> - 17.11-6
aed176
- Backport to protect active vhost_user rings (#1525446)
aed176
aed176
* Tue Jan 09 2018 Timothy Redaelli <tredaelli@redhat.com> - 17.11-5
aed176
- Real backport of "net/virtio: fix vector Rx break caused by rxq flushing"
aed176
aed176
* Thu Dec 14 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-4
aed176
- Backport "net/virtio: fix vector Rx break caused by rxq flushing"
aed176
aed176
* Wed Dec 06 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-3
aed176
- Enable ENIC only for x86_64
aed176
aed176
* Wed Dec 06 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-2
aed176
- Re-add main package dependency from dpdk-tools
aed176
- Add explicit python dependency to dpdk-tools
aed176
aed176
* Tue Nov 28 2017 Timothy Redaelli <tredaelli@redhat.com> - 17.11-1
aed176
- Update to DPDK 17.11 (#1522700)
aed176
- Use a static configuration file
aed176
- Remove i686 from ExclusiveArch since it's not supported on RHEL7
aed176
- Remove "--without shared" support
aed176
aed176
* Fri Oct 13 2017 Josh Boyer <jwboyer@redhat.com> - 16.11.2-6
aed176
- Rebuild to pick up all arches
aed176
aed176
* Fri Oct 13 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11.2-5
aed176
- Enable only supported PMDs (#1497384)
aed176
aed176
* Fri Jun 23 2017 John W. Linville <linville@redhat.com> - 16.11.2-4
aed176
- Backport "eal/ppc: fix mmap for memory initialization"
aed176
aed176
* Fri Jun 09 2017 John W. Linville <linville@redhat.com> - 16.11.2-3
aed176
- Enable i40e driver in PowerPC along with its altivec intrinsic support
aed176
- Add PCI probing support for vfio-pci devices in Power8
aed176
aed176
* Thu Jun 08 2017 John W. Linville <linville@redhat.com> - 16.11.2-2
aed176
- Enable aarch64, ppc64le (#1428587)
aed176
aed176
* Thu Jun 08 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11.2-1
aed176
- Import from fdProd
aed176
- Update to 16.11.2 (#1459333)
aed176
aed176
* Wed Mar 22 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11-4
aed176
- Avoid infinite loop while linking with libdpdk.so (#1434907)
aed176
aed176
* Thu Feb 02 2017 Timothy Redaelli <tredaelli@redhat.com> - 16.11-3
aed176
- Make driverctl a different package
aed176
aed176
* Thu Dec 08 2016 Kevin Traynor <ktraynor@redhat.com> - 16.11-2
aed176
- Update to DPDK 16.11 (#1335865)
aed176
aed176
* Wed Oct 05 2016 Panu Matilainen <pmatilai@redhat.com> - 16.07-1
aed176
- Update to DPDK 16.07 (#1383195)
aed176
- Disable unstable bnx2x driver (#1330589)
aed176
- Enable librte_vhost NUMA support again (#1279525)
aed176
- Enable librte_cryptodev, its no longer considered experimental
aed176
- Change example prefix to dpdk- for consistency with other utilities
aed176
- Update driverctl to 0.89
aed176
aed176
* Thu Jul 21 2016 Flavio Leitner <fbl@redhat.com> - 16.04-4
aed176
- Updated to DPDK 16.04
aed176
aed176
* Wed Mar 16 2016 Panu Matilainen <pmatilai@redhat.com> - 2.2.0-3
aed176
- Disable librte_vhost NUMA support for now, it causes segfaults
aed176
aed176
* Wed Jan 27 2016 Panu Matilainen <pmatilai@redhat.com> - 2.2.0-2
aed176
- Use a different quoting method to avoid messing up vim syntax highlighting
aed176
- A string is expected as CONFIG_RTE_MACHINE value, quote it too
aed176
- Enable librte_vhost NUMA-awareness
aed176
aed176
* Tue Jan 12 2016 Panu Matilainen <pmatilai@redhat.com> - 2.2.0-1
aed176
- Update DPDK to 2.2.0 final
aed176
- Add README and MAINTAINERS docs
aed176
- Adopt new upstream standard installation layout, including
aed176
  dpdk_nic_bind.py renamed to dpdk_nic_bind
aed176
- Move the unversioned pmd symlinks from libdir -devel
aed176
- Establish a driver directory for automatic driver loading
aed176
- Disable CONFIG_RTE_SCHED_VECTOR, it conflicts with CONFIG_RTE_MACHINE default
aed176
- Disable experimental cryptodev library
aed176
- More complete dtneeded patch
aed176
- Make option matching stricter in spec setconf
aed176
- Update driverctl to 0.59
aed176
aed176
* Wed Dec 09 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-5
aed176
- Fix artifacts from driverctl having different version
aed176
- Update driverctl to 0.58
aed176
aed176
* Fri Nov 13 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-4
aed176
- Add driverctl sub-package
aed176
aed176
* Fri Oct 23 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-3
aed176
- Enable bnx2x pmd, which buildrequires zlib-devel
aed176
aed176
* Mon Sep 28 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-2
aed176
- Make lib and include available both ways in the SDK paths
aed176
aed176
* Thu Sep 24 2015 Panu Matilainen <pmatilai@redhat.com> - 2.1.0-1
aed176
- Update to dpdk 2.1.0 final
aed176
  - Disable ABI_NEXT
aed176
  - Rebase patches as necessary
aed176
  - Fix build of ip_pipeline example
aed176
  - Drop no longer needed -Wno-error=array-bounds
aed176
  - Rename libintel_dpdk to libdpdk
aed176
aed176
* Tue Aug 11 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-9
aed176
- Drop main package dependency from dpdk-tools
aed176
aed176
* Wed May 20 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-8
aed176
- Drop eventfd-link patch, its only needed for vhost-cuse
aed176
aed176
* Tue May 19 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-7
aed176
- Drop pointless build conditional, the linker script is here to stay
aed176
- Drop vhost-cuse build conditional, vhost-user is here to stay
aed176
- Cleanup comments a bit
aed176
- Enable parallel build again
aed176
- Dont build examples by default
aed176
aed176
* Thu Apr 30 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-6
aed176
- Fix potential hang and thread issues with VFIO eventfd
aed176
aed176
* Fri Apr 24 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-5
aed176
- Fix a potential hang due to missed interrupt in vhost library
aed176
aed176
* Tue Apr 21 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-4
aed176
- Drop unused pre-2.0 era patches
aed176
- Handle vhost-user/cuse selection automatically based on the copr repo name
aed176
aed176
* Fri Apr 17 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-3
aed176
- Dont depend on fuse when built for vhost-user support
aed176
- Drop version from testpmd binary, we wont be parallel-installing that
aed176
aed176
* Thu Apr 09 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-2
aed176
- Remove the broken kmod stuff
aed176
- Add a new dkms-based eventfd_link subpackage if vhost-cuse is enabled
aed176
aed176
* Tue Apr 07 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-1
aed176
- Update to 2.0 final (http://dpdk.org/doc/guides-2.0/rel_notes/index.html)
aed176
aed176
* Thu Apr 02 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2086.git263333bb.2
aed176
- Switch (back) to vhost-user, thus disabling vhost-cuse support
aed176
- Build requires fuse-devel for now even when fuse is unused
aed176
aed176
* Mon Mar 30 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2049.git2f95a470.1
aed176
- New snapshot
aed176
- Add spec option for enabling vhost-user instead of vhost-cuse
aed176
- Build requires fuse-devel only with vhost-cuse
f93759
- Add virtual provide for vhost user/cuse tracking
aed176
aed176
* Fri Mar 27 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2038.git91a8743e.3
aed176
- Disable vhost-user for now to get vhost-cuse support, argh.
aed176
aed176
* Fri Mar 27 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2038.git91a8743e.2
aed176
- Add a bunch of missing dependencies to -tools
aed176
aed176
* Thu Mar 26 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2038.git91a8743e.1
aed176
- Another day, another snapshot
aed176
- Disable IVSHMEM support for now
aed176
aed176
* Fri Mar 20 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2022.gitfe4810a0.2
aed176
- Dont fail build for array bounds warnings for now, gcc 5 is emitting a bunch
aed176
aed176
* Fri Mar 20 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.2022.gitfe4810a0.1
aed176
- Another day, another snapshot
aed176
- Avoid building pdf docs
aed176
aed176
* Tue Mar 03 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1916.gita001589e.2
aed176
- Add missing dependency to tools -subpackage
aed176
aed176
* Tue Mar 03 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1916.gita001589e.1
aed176
- New snapshot
aed176
- Work around #1198009
aed176
aed176
* Mon Mar 02 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1911.gitffc468ff.2
aed176
- Optionally package tools too, some binding script is needed for many setups
aed176
aed176
* Mon Mar 02 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1911.gitffc468ff.1
aed176
- New snapshot
aed176
- Disable kernel module build by default
aed176
- Add patch to fix missing defines/includes for external applications
aed176
aed176
* Fri Feb 27 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1906.git00c68563.1
aed176
- New snapshot
aed176
- Remove bogus devname module alias from eventfd-link module
aed176
- Whack evenfd-link to honor RTE_KERNELDIR too
aed176
aed176
* Thu Feb 26 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1903.gitb67578cc.3
aed176
- Add spec option to build kernel modules too
aed176
- Build eventfd-link module too if kernel modules enabled
aed176
aed176
* Thu Feb 26 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1903.gitb67578cc.2
aed176
- Move config changes from spec after "make config" to simplify things
aed176
- Move config changes from dpdk-config patch to the spec
aed176
aed176
* Thu Feb 19 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1717.gitd3aa5274.2
aed176
- Fix warnings tripping up build with gcc 5, remove -Wno-error
aed176
aed176
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1698.gitc07691ae.1
aed176
- Move the unversioned .so links for plugins into main package
aed176
- New snapshot
aed176
aed176
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1695.gitc2ce3924.3
aed176
- Fix missing symbol export for rte_eal_iopl_init()
aed176
- Only mention libs once in the linker script
aed176
aed176
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1695.gitc2ce3924.2
aed176
- Fix gcc version logic to work with 5.0 too
aed176
aed176
* Wed Feb 18 2015 Panu Matilainen <pmatilai@redhat.com> - 2.0.0-0.1695.gitc2ce3924.1
aed176
- Add spec magic to easily switch between stable and snapshot versions
aed176
- Add tarball snapshot script for reference
aed176
- Update to pre-2.0 git snapshot
aed176
aed176
* Thu Feb 12 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-15
aed176
- Disable -Werror, this is not useful behavior for released versions
aed176
aed176
* Wed Feb 11 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-14
aed176
- Fix typo causing librte_vhost missing DT_NEEDED on fuse
aed176
aed176
* Wed Feb 11 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-13
aed176
- Fix vhost library linkage
aed176
- Add spec option to build example applications, enable by default
aed176
aed176
* Fri Feb 06 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-12
aed176
- Enable librte_acl build
aed176
- Enable librte_ivshmem build
aed176
aed176
* Thu Feb 05 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-11
aed176
- Drop the private libdir, not needed with versioned libs
aed176
aed176
* Thu Feb 05 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-10
aed176
- Drop symbol versioning patches, always do library version for shared
aed176
- Add comment on the combined library thing
aed176
aed176
* Wed Feb 04 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-9
aed176
- Add missing symbol version to librte_cmdline
aed176
aed176
* Tue Feb 03 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-8
aed176
- Set soname of the shared libraries
aed176
- Fixup typo in ld path config file name
aed176
aed176
* Tue Feb 03 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-7
aed176
- Add library versioning patches as another build option, enable by default
aed176
aed176
* Tue Feb 03 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-6
aed176
- Add our libraries to ld path & run ldconfig when using shared libs
aed176
aed176
* Fri Jan 30 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-5
aed176
- Add DT_NEEDED for external dependencies (pcap, fuse, dl, pthread)
aed176
- Enable combined library creation, needed for OVS
aed176
- Enable shared library creation, needed for sanity
aed176
aed176
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-4
aed176
- Include scripts directory in the "sdk" too
aed176
aed176
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-3
aed176
- Fix -Wformat clash preventing i40e driver build, enable it
aed176
- Fix -Wall clash preventing enic driver build, enable it
aed176
aed176
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-2
aed176
- Enable librte_vhost, which buildrequires fuse-devel
aed176
- Enable physical NIC drivers that build (e1000, ixgbe) for VFIO use
aed176
aed176
* Thu Jan 29 2015 Panu Matilainen <pmatilai@redhat.com> - 1.8.0-1
aed176
- Update to 1.8.0
aed176
aed176
* Wed Jan 28 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-8
aed176
- Always build with -fPIC
aed176
aed176
* Wed Jan 28 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-7
aed176
- Policy compliance: move static libraries to -devel, provide dpdk-static
aed176
- Add a spec option to build as shared libraries
aed176
aed176
* Wed Jan 28 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-6
aed176
- Avoid variable expansion in the spec here-documents during build
aed176
- Drop now unnecessary debug flags patch
aed176
- Add a spec option to build a combined library
aed176
aed176
* Tue Jan 27 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-5
aed176
- Avoid unnecessary use of %%global, lazy expansion is normally better
aed176
- Drop unused destdir macro while at it
aed176
- Arrange for RTE_SDK environment + directory layout expected by DPDK apps
aed176
- Drop config from main package, it shouldn't be needed at runtime
aed176
aed176
* Tue Jan 27 2015 Panu Matilainen <pmatilai@redhat.com> - 1.7.0-4
aed176
- Copy the headers instead of broken symlinks into -devel package
aed176
- Force sane mode on the headers
aed176
- Avoid unnecessary %%exclude by not copying unpackaged content to buildroot
aed176
- Clean up summaries and descriptions
aed176
- Drop unnecessary kernel-devel BR, we are not building kernel modules
aed176
aed176
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-3
aed176
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
aed176
aed176
* Thu Jul 17 2014 - John W. Linville <linville@redhat.com> - 1.7.0-2
aed176
- Use EXTRA_CFLAGS to include standard Fedora compiler flags in build
aed176
- Set CONFIG_RTE_MACHINE=default to build for least-common-denominator machines
aed176
- Turn-off build of librte_acl, since it does not build on default machines
aed176
- Turn-off build of physical device PMDs that require kernel support
aed176
- Clean-up the install rules to match current packaging
aed176
- Correct changelog versions 1.0.7 -> 1.7.0
aed176
- Remove ix86 from ExclusiveArch -- it does not build with above changes
aed176
aed176
* Thu Jul 10 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-1.0
f93759
- Update source to official 1.7.0 release
aed176
aed176
* Thu Jul 03 2014 - Neil Horman <nhorman@tuxdriver.com>
aed176
- Fixing up release numbering
aed176
aed176
* Tue Jul 01 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.9.1.20140603git5ebbb1728
aed176
- Fixed some build errors (empty debuginfo, bad 32 bit build)
aed176
aed176
* Wed Jun 11 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.9.20140603git5ebbb1728
aed176
- Fix another build dependency
aed176
aed176
* Mon Jun 09 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.8.20140603git5ebbb1728
aed176
- Fixed doc arch versioning issue
aed176
aed176
* Mon Jun 09 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.7.20140603git5ebbb1728
aed176
- Added verbose output to build
aed176
aed176
* Tue May 13 2014 - Neil Horman <nhorman@tuxdriver.com> - 1.7.0-0.6.20140603git5ebbb1728
aed176
- Initial Build
aed176