Accepting request 460208 from network
1 OBS-URL: https://build.opensuse.org/request/show/460208 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dpdk?expand=0&rev=9
This commit is contained in:
commit
69e5e0d6c0
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 24 13:46:44 CET 2017 - ndas@suse.de
|
||||||
|
|
||||||
|
- Fix broken dpdk-pmd/* soft links(bsc#1026804).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 16 18:29:43 CET 2017 - ndas@suse.de
|
||||||
|
|
||||||
|
- Do not disable cryptodev as EXPREMENTAL tag has been removed.
|
||||||
|
- Remove CONFIG_RTE_LIBRTE_MBUF_OFFLOAD as cryptodev is not depending
|
||||||
|
on it anymore and its removed from the upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 10 11:24:27 CET 2017 - ndas@suse.de
|
Fri Feb 10 11:24:27 CET 2017 - ndas@suse.de
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
|
|
||||||
%define machine native
|
%define machine native
|
||||||
@ -171,8 +172,6 @@ make CC=gcc-6 V=1 O=%{target} T=%{target} %{?_smp_mflags} config
|
|||||||
setconf CONFIG_RTE_MACHINE '"%{machine2}"'
|
setconf CONFIG_RTE_MACHINE '"%{machine2}"'
|
||||||
# Disable experimental features
|
# Disable experimental features
|
||||||
setconf CONFIG_RTE_NEXT_ABI n
|
setconf CONFIG_RTE_NEXT_ABI n
|
||||||
setconf CONFIG_RTE_LIBRTE_CRYPTODEV n
|
|
||||||
setconf CONFIG_RTE_LIBRTE_MBUF_OFFLOAD n
|
|
||||||
|
|
||||||
# Enable automatic driver loading from this path
|
# Enable automatic driver loading from this path
|
||||||
setconf CONFIG_RTE_EAL_PMD_PATH '"%{pmddir}"'
|
setconf CONFIG_RTE_EAL_PMD_PATH '"%{pmddir}"'
|
||||||
@ -213,7 +212,6 @@ make CC=gcc-6 V=1 O=%{target}/examples T=%{target} %{?_smp_mflags} examples
|
|||||||
export EXTRA_CFLAGS='-DVERSION=\"%{version}\"'
|
export EXTRA_CFLAGS='-DVERSION=\"%{version}\"'
|
||||||
export INSTALL_MOD_PATH=%{buildroot}
|
export INSTALL_MOD_PATH=%{buildroot}
|
||||||
export INSTALL_MOD_DIR=updates
|
export INSTALL_MOD_DIR=updates
|
||||||
# needssslcertforbuild
|
|
||||||
export BRP_PESIGN_FILES="*.ko"
|
export BRP_PESIGN_FILES="*.ko"
|
||||||
|
|
||||||
for flavor in %{flavors_to_build}; do
|
for flavor in %{flavors_to_build}; do
|
||||||
@ -245,7 +243,7 @@ done
|
|||||||
|
|
||||||
# Create a driver directory with symlinks to all pmds
|
# Create a driver directory with symlinks to all pmds
|
||||||
mkdir -p %{buildroot}/%{pmddir}
|
mkdir -p %{buildroot}/%{pmddir}
|
||||||
for f in %{buildroot}/%{_libdir}/*_pmd_*.so; do
|
for f in %{buildroot}/%{_libdir}/*_pmd_*.so.*; do
|
||||||
bn=$(basename ${f})
|
bn=$(basename ${f})
|
||||||
ln -s ../${bn} %{buildroot}%{pmddir}/${bn}
|
ln -s ../${bn} %{buildroot}%{pmddir}/${bn}
|
||||||
done
|
done
|
||||||
|
12
dpdk.changes
12
dpdk.changes
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 24 13:46:44 CET 2017 - ndas@suse.de
|
||||||
|
|
||||||
|
- Fix broken dpdk-pmd/* soft links(bsc#1026804).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 16 18:29:43 CET 2017 - ndas@suse.de
|
||||||
|
|
||||||
|
- Do not disable cryptodev as EXPREMENTAL tag has been removed.
|
||||||
|
- Remove CONFIG_RTE_LIBRTE_MBUF_OFFLOAD as cryptodev is not depending
|
||||||
|
on it anymore and its removed from the upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 10 11:24:27 CET 2017 - ndas@suse.de
|
Fri Feb 10 11:24:27 CET 2017 - ndas@suse.de
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
|
|
||||||
%define machine native
|
%define machine native
|
||||||
@ -169,8 +170,6 @@ make CC=gcc-6 V=1 O=%{target} T=%{target} %{?_smp_mflags} config
|
|||||||
setconf CONFIG_RTE_MACHINE '"%{machine2}"'
|
setconf CONFIG_RTE_MACHINE '"%{machine2}"'
|
||||||
# Disable experimental features
|
# Disable experimental features
|
||||||
setconf CONFIG_RTE_NEXT_ABI n
|
setconf CONFIG_RTE_NEXT_ABI n
|
||||||
setconf CONFIG_RTE_LIBRTE_CRYPTODEV n
|
|
||||||
setconf CONFIG_RTE_LIBRTE_MBUF_OFFLOAD n
|
|
||||||
|
|
||||||
# Enable automatic driver loading from this path
|
# Enable automatic driver loading from this path
|
||||||
setconf CONFIG_RTE_EAL_PMD_PATH '"%{pmddir}"'
|
setconf CONFIG_RTE_EAL_PMD_PATH '"%{pmddir}"'
|
||||||
@ -211,7 +210,6 @@ make CC=gcc-6 V=1 O=%{target}/examples T=%{target} %{?_smp_mflags} examples
|
|||||||
export EXTRA_CFLAGS='-DVERSION=\"%{version}\"'
|
export EXTRA_CFLAGS='-DVERSION=\"%{version}\"'
|
||||||
export INSTALL_MOD_PATH=%{buildroot}
|
export INSTALL_MOD_PATH=%{buildroot}
|
||||||
export INSTALL_MOD_DIR=updates
|
export INSTALL_MOD_DIR=updates
|
||||||
# needssslcertforbuild
|
|
||||||
export BRP_PESIGN_FILES="*.ko"
|
export BRP_PESIGN_FILES="*.ko"
|
||||||
|
|
||||||
for flavor in %{flavors_to_build}; do
|
for flavor in %{flavors_to_build}; do
|
||||||
@ -243,7 +241,7 @@ done
|
|||||||
|
|
||||||
# Create a driver directory with symlinks to all pmds
|
# Create a driver directory with symlinks to all pmds
|
||||||
mkdir -p %{buildroot}/%{pmddir}
|
mkdir -p %{buildroot}/%{pmddir}
|
||||||
for f in %{buildroot}/%{_libdir}/*_pmd_*.so; do
|
for f in %{buildroot}/%{_libdir}/*_pmd_*.so.*; do
|
||||||
bn=$(basename ${f})
|
bn=$(basename ${f})
|
||||||
ln -s ../${bn} %{buildroot}%{pmddir}/${bn}
|
ln -s ../${bn} %{buildroot}%{pmddir}/${bn}
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user