diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-03 00:02:14 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-01-04 21:47:59 +0100 |
commit | cc04a75932345ba37e4e18f82ae3f85330cedf68 (patch) | |
tree | ad67a8df6c3c67243e5c2c981dfdae168f80d214 /packages/linux-kernel/build-intel-qat.sh | |
parent | db11c4bcefba6c03b4559dd4eee1c8e5265bb189 (diff) | |
download | vyos-build-cc04a75932345ba37e4e18f82ae3f85330cedf68.tar.gz vyos-build-cc04a75932345ba37e4e18f82ae3f85330cedf68.zip |
Kernel: T5887: update Linux Kernel to v6.6.9
Diffstat (limited to 'packages/linux-kernel/build-intel-qat.sh')
-rwxr-xr-x | packages/linux-kernel/build-intel-qat.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/linux-kernel/build-intel-qat.sh b/packages/linux-kernel/build-intel-qat.sh index 74bbc73b..765cea3f 100755 --- a/packages/linux-kernel/build-intel-qat.sh +++ b/packages/linux-kernel/build-intel-qat.sh @@ -14,14 +14,15 @@ fi . ${KERNEL_VAR_FILE} -url="https://rolling-packages.vyos.net/source-mirror/QAT1.7.L.4.20.0-00001.tar.gz" +url="https://dev.packages.vyos.net/source-mirror/QAT.L.4.24.0-00005.tar.gz" cd ${CWD} DRIVER_FILE=$(basename ${url} | sed -e s/tar_0/tar/) DRIVER_DIR="${DRIVER_FILE%.tar.gz}" DRIVER_NAME="QAT" -DRIVER_VERSION=$(echo ${DRIVER_DIR} | awk -F${DRIVER_NAME} '{print $2}') +DRIVER_NAME_EXTRA="L." +DRIVER_VERSION=$(echo ${DRIVER_DIR} | awk -F${DRIVER_NAME} '{print $2}' | awk -F${DRIVER_NAME_EXTRA} '{print $2}') DRIVER_VERSION_EXTRA="-0" # Build up Debian related variables required for packaging @@ -107,4 +108,4 @@ if [ -d ${DRIVER_DIR} ]; then fi if [ -d ${DEBIAN_DIR} ]; then rm -rf ${DEBIAN_DIR} -fi
\ No newline at end of file +fi |