Skip to content

Commit f55e432

Browse files
dlb, demo: update dlb to 8.5.2
Signed-off-by: Hyeongju Johannes Lee <[email protected]>
1 parent 397f053 commit f55e432

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

cmd/dlb_plugin/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ If you configure SR-IOV/VF (virtual functions), continue the following configura
2626

2727
Patch dpdk sources to work with DLB:
2828
```bash
29-
$ wget -q https://fast.dpdk.org/rel/dpdk-21.11.tar.xz -O- | tar -Jx
30-
$ wget -q https://downloadmirror.intel.com/763709/dlb_linux_src_release8.0.0.txz -O- | tar -Jx
29+
$ wget -q https://fast.dpdk.org/rel/dpdk-22.11.2.tar.xz -O- | tar -Jx
30+
$ wget -q https://downloadmirror.intel.com/791459/dlb_linux_src_release8.5.2.txz -O- | tar -Jx
3131
$ cd ./dpdk-*/ && patch -p1 < ../dlb/dpdk/dpdk_dlb_*_diff.patch
3232
$ sed -i 's/270b,2710,2714/270b,2710,2711,2714/g' ./usertools/dpdk-devbind.py
3333
```

demo/dlb-dpdk-demo/Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ WORKDIR $DIR
66
RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip
77

88
# Download & unpack DLB tarball
9-
ARG DLB_TARBALL="dlb_linux_src_release_8.3.0.txz"
10-
ARG DLB_TARBALL_SHA256="ce2141f055e6ecca9a51ead30b0cd24a89af74afef0daa0440ae48b3f3cbc27d"
9+
ARG DLB_TARBALL="dlb_linux_src_release_8.5.2.txz"
10+
ARG DLB_TARBALL_SHA256="99b666e7ce948e20a91e8c2507ec972e10b35fcb1f2061247343dabfdf71d9dd"
1111

12-
RUN wget https://downloadmirror.intel.com/776610/$DLB_TARBALL \
12+
RUN wget https://downloadmirror.intel.com/791459/$DLB_TARBALL \
1313
&& echo "$DLB_TARBALL_SHA256 $DLB_TARBALL" | sha256sum -c - \
1414
&& tar -Jxf $DLB_TARBALL --no-same-owner && rm $DLB_TARBALL
1515

1616
# Download & unpack DPDK tarball
17-
ARG DPDK_TARBALL=dpdk-21.11.tar.xz
18-
ARG DPDK_TARBALL_SHA256="3246e3ed68ee2b369a5d8be2c06cf108a669e157f4d41c5bcbbb216bf5abd3a1"
17+
ARG DPDK_TARBALL=dpdk-22.11.2.tar.xz
18+
ARG DPDK_TARBALL_SHA256="af64bdda15087ff8d429894b9ea6cbbbb6ee7a932bdb344f82b0dc366379a2d4"
1919

2020
RUN wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
2121
&& echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \

demo/dlb-libdlb-demo/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ WORKDIR /dlb-build
66
RUN apt-get update && apt-get install -y wget xz-utils make gcc
77

88
# Download and unpack DLB tarball
9-
ARG DLB_TARBALL="dlb_linux_src_release_8.3.0.txz"
10-
ARG DLB_TARBALL_SHA256="ce2141f055e6ecca9a51ead30b0cd24a89af74afef0daa0440ae48b3f3cbc27d"
9+
ARG DLB_TARBALL="dlb_linux_src_release_8.5.2.txz"
10+
ARG DLB_TARBALL_SHA256="99b666e7ce948e20a91e8c2507ec972e10b35fcb1f2061247343dabfdf71d9dd"
1111

12-
RUN wget https://downloadmirror.intel.com/776610/$DLB_TARBALL \
12+
RUN wget https://downloadmirror.intel.com/791459/$DLB_TARBALL \
1313
&& echo "$DLB_TARBALL_SHA256 $DLB_TARBALL" | sha256sum -c - \
1414
&& tar -xvf *.txz --no-same-owner
1515

0 commit comments

Comments
 (0)