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:
aed176
#% define commit0 0da7f445df445630c794897347ee360d6fe6348b
aed176
#% define date 20181127
aed176
#% define shortcommit0 %(c=%{commit0}; echo ${c:0:7})
aed176
aed176
%define ver 18.11
aed176
%define rel 3
aed176
aed176
%define srcname dpdk
aed176
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
Source500: configlib.sh
aed176
Source501: gen_config_group.sh
aed176
Source502: set_config.sh
aed176
aed176
# Important: source503 is used as the actual copy file
aed176
# @TODO: this causes a warning - fix it?
aed176
Source504: arm64-armv8a-linuxapp-gcc-config
aed176
Source505: ppc_64-power8-linuxapp-gcc-config
aed176
Source506: x86_64-native-linuxapp-gcc-config
aed176
aed176
# Patches only in dpdk package
aed176
Patch0: 0001-bus-vmbus-fix-race-in-subchannel-creation.patch
aed176
Patch1: 0002-net-netvsc-enable-SR-IOV.patch
aed176
Patch2: 0003-net-netvsc-disable-multi-queue-on-older-servers.patch
aed176
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
# machine_arch maps between rpm and dpdk arch name, often same as _target_cpu
aed176
# machine_tmpl is the config template machine name, often "native"
aed176
# machine is the actual machine name used in the dpdk make system
aed176
%ifarch x86_64
aed176
%define machine_arch x86_64
aed176
%define machine_tmpl native
aed176
%define machine default
aed176
%endif
aed176
%ifarch aarch64
aed176
%define machine_arch arm64
aed176
%define machine_tmpl armv8a
aed176
%define machine armv8a
aed176
%endif
aed176
%ifarch ppc64le
aed176
%define machine_arch ppc_64
aed176
%define machine_tmpl power8
aed176
%define machine power8
aed176
%endif
aed176
aed176
%define target %{machine_arch}-%{machine_tmpl}-linuxapp-gcc
aed176
aed176
%define sdkdir  %{_datadir}/%{name}
aed176
%define docdir  %{_docdir}/%{name}
aed176
%define incdir  %{_includedir}/%{name}
aed176
%define pmddir %{_libdir}/%{name}-pmds
aed176
aed176
%if 0%{?rhel} > 7 || 0%{?fedora}
aed176
%define _py python3
aed176
%define _py_exec %{?__python3}
aed176
%else
aed176
%define _py python
aed176
%define _py_exec %{?__python2}
aed176
%endif
aed176
aed176
%if 0%{?rhel} > 7
aed176
# Fix conflicts with README and MAINTAINERS (included in dpdk-doc < 18.11-2)
aed176
Conflicts: dpdk-doc < 18.11-2
aed176
%endif
aed176
aed176
BuildRequires: gcc, kernel-headers, zlib-devel, numactl-devel
aed176
BuildRequires: doxygen, %{_py}-devel, %{_py}-sphinx
aed176
%ifarch x86_64
aed176
BuildRequires: rdma-core-devel >= 15 libmnl-devel
aed176
%global __requires_exclude_from ^%{_libdir}/librte_pmd_mlx[45]_glue\.so.*$
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}
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}
aed176
Requires: kmod pciutils findutils iproute %{_py_exec}
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
aed176
%autosetup -n %{srcname}-%{?commit0:%{commit0}}%{!?commit0:%{ver}} -p1
aed176
aed176
%build
aed176
# In case dpdk-devel is installed
aed176
unset RTE_SDK RTE_INCLUDE RTE_TARGET
aed176
aed176
# Avoid appending second -Wall to everything, it breaks upstream warning
aed176
# disablers in makefiles. Strip expclit -march= from optflags since they
aed176
# will only guarantee build failures, DPDK is picky with that.
aed176
export EXTRA_CFLAGS="$(echo %{optflags} | sed -e 's:-Wall::g' -e 's:-march=[[:alnum:]]* ::g') -Wformat -fPIC"
aed176
aed176
# DPDK defaults to using builder-specific compiler flags.  However,
aed176
# the config has been changed by specifying CONFIG_RTE_MACHINE=default
aed176
# in order to build for a more generic host.  NOTE: It is possible that
aed176
# the compiler flags used still won't work for all Fedora-supported
aed176
# machines, but runtime checks in DPDK will catch those situations.
aed176
aed176
make V=1 O=%{target} T=%{target} %{?_smp_mflags} config
aed176
aed176
cp -f %{SOURCE500} %{SOURCE502} "%{_sourcedir}/%{target}-config" .
aed176
%{SOURCE502} %{target}-config "%{target}/.config"
aed176
aed176
make V=1 O=%{target} %{?_smp_mflags} 
aed176
aed176
# Creating PDF's has excessive build-requirements, html docs suffice fine
aed176
make V=1 O=%{target} %{?_smp_mflags} doc-api-html doc-guides-html
aed176
aed176
%if %{with examples}
aed176
make V=1 O=%{target}/examples T=%{target} %{?_smp_mflags} examples
aed176
%endif
aed176
aed176
%install
aed176
# In case dpdk-devel is installed
aed176
unset RTE_SDK RTE_INCLUDE RTE_TARGET
aed176
aed176
%make_install O=%{target} prefix=%{_usr} libdir=%{_libdir}
aed176
aed176
# Replace /usr/bin/env python with the correct python binary
aed176
find %{buildroot}%{sdkdir}/ -name "*.py" -exec \
aed176
  sed -i -e 's|#!\s*/usr/bin/env python|#!%{_py_exec}|' {} +
aed176
aed176
# Create a driver directory with symlinks to all pmds
aed176
mkdir -p %{buildroot}/%{pmddir}
aed176
for f in %{buildroot}/%{_libdir}/*_pmd_*.so.*; do
aed176
    bn=$(basename ${f})
aed176
%ifarch x86_64
aed176
    case $bn in
aed176
    librte_pmd_mlx[45]_glue.so.*)
aed176
        mkdir -p %{buildroot}/%{pmddir}-glue
aed176
        ln -s ../${bn} %{buildroot}%{pmddir}-glue/${bn}
aed176
        continue
aed176
        ;;
aed176
    esac
aed176
%endif
aed176
    ln -s ../${bn} %{buildroot}%{pmddir}/${bn}
aed176
done
aed176
aed176
%if ! %{with tools}
aed176
rm -rf %{buildroot}%{sdkdir}/usertools
aed176
rm -rf %{buildroot}%{_sbindir}/dpdk-devbind
aed176
%endif
aed176
rm -f %{buildroot}%{sdkdir}/usertools/dpdk-setup.sh
aed176
rm -f %{buildroot}%{sdkdir}/usertools/meson.build
aed176
rm -f %{buildroot}%{_bindir}/dpdk-pmdinfo
aed176
rm -f %{buildroot}%{_bindir}/dpdk-test-crypto-perf
aed176
rm -f %{buildroot}%{_bindir}/dpdk-test-eventdev
aed176
aed176
%if %{with examples}
aed176
find %{target}/examples/ -name "*.map" | xargs rm -f
aed176
for f in %{target}/examples/*/%{target}/app/*; do
aed176
    bn=`basename ${f}`
aed176
    cp -p ${f} %{buildroot}%{_bindir}/dpdk-${bn}
aed176
done
aed176
%else
aed176
rm -rf %{buildroot}%{sdkdir}/examples
aed176
%endif
aed176
aed176
# Setup RTE_SDK environment as expected by apps etc
aed176
mkdir -p %{buildroot}/%{_sysconfdir}/profile.d
aed176
cat << EOF > %{buildroot}/%{_sysconfdir}/profile.d/dpdk-sdk-%{_arch}.sh
aed176
if [ -z "\${RTE_SDK}" ]; then
aed176
    export RTE_SDK="%{sdkdir}"
aed176
    export RTE_TARGET="%{target}"
aed176
    export RTE_INCLUDE="%{incdir}"
aed176
fi
aed176
EOF
aed176
aed176
cat << EOF > %{buildroot}/%{_sysconfdir}/profile.d/dpdk-sdk-%{_arch}.csh
aed176
if ( ! \$RTE_SDK ) then
aed176
    setenv RTE_SDK "%{sdkdir}"
aed176
    setenv RTE_TARGET "%{target}"
aed176
    setenv RTE_INCLUDE "%{incdir}"
aed176
endif
aed176
EOF
aed176
aed176
# Fixup target machine mismatch
aed176
sed -i -e 's:-%{machine_tmpl}-:-%{machine}-:g' %{buildroot}/%{_sysconfdir}/profile.d/dpdk-sdk*
aed176
aed176
%files
aed176
# BSD
aed176
%doc README MAINTAINERS
aed176
%{_bindir}/testpmd
aed176
%{_bindir}/dpdk-procinfo
aed176
%{_bindir}/dpdk-pdump
aed176
%dir %{pmddir}
aed176
%{_libdir}/*.so.*
aed176
%{pmddir}/*.so.*
aed176
%ifarch x86_64
aed176
%dir %{pmddir}-glue
aed176
%{pmddir}-glue/*.so.*
aed176
%endif
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}
aed176
%exclude %{sdkdir}/usertools/
aed176
%endif
aed176
%if %{with examples}
aed176
%exclude %{sdkdir}/examples/
aed176
%endif
aed176
%{_sysconfdir}/profile.d/dpdk-sdk-*.*
aed176
%{_libdir}/*.so
aed176
%if %{with examples}
aed176
%files examples
aed176
%exclude %{_bindir}/dpdk-procinfo
aed176
%exclude %{_bindir}/dpdk-pdump
aed176
%{_bindir}/dpdk-*
aed176
%doc %{sdkdir}/examples/
aed176
%endif
aed176
aed176
%if %{with tools}
aed176
%files tools
aed176
%{sdkdir}/usertools/
aed176
%{_sbindir}/dpdk-devbind
aed176
%endif
aed176
aed176
%changelog
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
aed176
- 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
aed176
- 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