File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 11FROM clearlinux:base as builder
22
3+ ARG QAT_DRIVER_RELEASE="qat1.7.l.4.6.0-00025"
4+
35RUN swupd bundle-add wget c-basic go-basic && \
46 mkdir -p /usr/src/qat && \
57 cd /usr/src/qat && \
6- wget https://01.org/sites/default/files/downloads/qat1.7.l.4.5.0-00034 .tar.gz && \
8+ wget https://01.org/sites/default/files/downloads/$QAT_DRIVER_RELEASE .tar.gz && \
79 tar xf *.tar.gz
810RUN cd /usr/src/qat/quickassist/utilities/adf_ctl && \
911 make KERNEL_SOURCE_DIR=/usr/src/qat/quickassist/qat && \
Original file line number Diff line number Diff line change 11FROM debian:sid as builder
22
3- ENV QAT_DRIVER_RELEASE="qat1.7.l.4.3 .0-00033 "
4- ENV QAT_ENGINE_VERSION="v0.5.41 "
3+ ARG QAT_DRIVER_RELEASE="qat1.7.l.4.6 .0-00025 "
4+ ARG QAT_ENGINE_VERSION="v0.5.42 "
55
66RUN apt-get update && \
77 apt-get install -y git build-essential wget libssl-dev openssl libudev-dev pkg-config autoconf autogen libtool gawk && \
88 git clone https://github.com/intel/QAT_Engine && \
9- wget https://01.org/sites/default/files/downloads/intelr-quickassist-technology/ $QAT_DRIVER_RELEASE.tar.gz && \
10- tar zxf $QAT_DRIVER_RELEASE .tar.gz
9+ wget https://01.org/sites/default/files/downloads/$QAT_DRIVER_RELEASE.tar.gz && \
10+ tar xf * .tar.gz
1111
1212
1313RUN sed -i -e 's/cmn_ko$//' -e 's/lac_kernel$//' quickassist/Makefile && \
Original file line number Diff line number Diff line change 11FROM clearlinux:base as builder
22
3- ENV QAT_DRIVER_RELEASE="qat1.7.l.4.3 .0-00033 "
4- ENV QAT_ENGINE_VERSION="v0.5.41 "
3+ ARG QAT_DRIVER_RELEASE="qat1.7.l.4.6 .0-00025 "
4+ ARG QAT_ENGINE_VERSION="v0.5.42 "
55
66# add trusted CAs
77RUN rm -rf /run/lock/clrtrust.lock && \
88 clrtrust generate && \
99 swupd bundle-add --skip-diskspace-check devpkg-systemd devpkg-openssl c-basic wget git && \
1010 git clone https://github.com/intel/QAT_Engine && \
11- wget https://01.org/sites/default/files/downloads/intelr-quickassist-technology/ $QAT_DRIVER_RELEASE.tar.gz && \
12- tar zxf $QAT_DRIVER_RELEASE .tar.gz
11+ wget https://01.org/sites/default/files/downloads/$QAT_DRIVER_RELEASE.tar.gz && \
12+ tar xf * .tar.gz
1313
1414RUN sed -i -e 's/cmn_ko$//' -e 's/lac_kernel$//' quickassist/Makefile && \
1515 KERNEL_SOURCE_ROOT=/tmp ./configure && \
You can’t perform that action at this time.
0 commit comments