File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -8,17 +8,18 @@ RUN echo "deb-src http://deb.debian.org/debian unstable main" >> \
88RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip pkg-config dpkg-dev libipsec-mb-dev
99
1010# Download & unpack DPDK tarball
11- ARG DPDK_TARBALL=dpdk-24 .03.tar.xz
12- ARG DPDK_TARBALL_SHA256="33ed973b3945af4f5923096ddca250b401dc80be3b5c6393b4e4fe43a1a6c2ad "
11+ ARG DPDK_TARBALL=dpdk-25 .03.tar.xz
12+ ARG DPDK_TARBALL_SHA256="6a40a731328286ebd79685b18ffa5992e6b770c13843d65fd0d1157cfccff63d "
1313
1414RUN wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
1515 && echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \
1616 && tar -xf $DPDK_TARBALL && rm $DPDK_TARBALL
1717
18- ARG SOVERSION=24
18+ ARG SOVERSION=25
1919RUN cd dpdk-* && meson setup \
2020 -Dplatform=generic \
2121 -Dcpu_instruction_set=westmere \
22+ -Dmax_lcores=256 \
2223 "-Denable_drivers=common/qat,compress/qat,crypto/qat" \
2324 "-Denable_apps=test-crypto-perf,test-compress-perf" \
2425 --prefix $(pwd)/installdir \
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ WORKDIR $DIR
66RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip pkg-config dpkg-dev libipsec-mb-dev
77
88# Download & unpack DPDK tarball
9- ARG DPDK_TARBALL=dpdk-24.11.1 .tar.xz
10- ARG DPDK_TARBALL_SHA256="bcae7d42c449fc456dfb279feabcbe0599a29bebb2fe2905761e187339d96b8e "
9+ ARG DPDK_TARBALL=dpdk-25.03 .tar.xz
10+ ARG DPDK_TARBALL_SHA256="6a40a731328286ebd79685b18ffa5992e6b770c13843d65fd0d1157cfccff63d "
1111
1212RUN wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
1313 && echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \
You can’t perform that action at this time.
0 commit comments