diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-11-04 20:16:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-04 20:16:14 +0000 |
commit | 5674398d59f76bfcd3b594bfef4e5afb4eb043ca (patch) | |
tree | 33028fe188cae11c18ae4a6260a07bd3d617f90e /scripts/package-build/linux-kernel/build-intel-qat.sh | |
parent | a900353a5b2b858079a014803ea164d3e795f9ca (diff) | |
parent | 50b3d9f80e0f11b6d234d3e535539b1bd0082c93 (diff) | |
download | vyos-build-5674398d59f76bfcd3b594bfef4e5afb4eb043ca.tar.gz vyos-build-5674398d59f76bfcd3b594bfef4e5afb4eb043ca.zip |
Merge pull request #827 from sever-sever/T6813-kernel
T6813: Build tarballs for the packages in the linux-kernel dir
Diffstat (limited to 'scripts/package-build/linux-kernel/build-intel-qat.sh')
-rwxr-xr-x | scripts/package-build/linux-kernel/build-intel-qat.sh | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/scripts/package-build/linux-kernel/build-intel-qat.sh b/scripts/package-build/linux-kernel/build-intel-qat.sh index fb6ccbb5..c2c364a9 100755 --- a/scripts/package-build/linux-kernel/build-intel-qat.sh +++ b/scripts/package-build/linux-kernel/build-intel-qat.sh @@ -101,17 +101,17 @@ fpm --input-type dir --output-type deb --name vyos-intel-${DRIVER_NAME} \ --depends linux-image-${KERNEL_VERSION}${KERNEL_SUFFIX} \ --license "GPL2" -C ${DEBIAN_DIR} --after-install ${DEBIAN_POSTINST} -echo "I: Cleanup ${DRIVER_NAME} source" -cd ${CWD} -if [ -e ${DRIVER_FILE} ]; then - rm -f ${DRIVER_FILE} -fi -if [ -d ${DRIVER_DIR} ]; then - rm -rf ${DRIVER_DIR} -fi -if [ -d ${DEBIAN_DIR} ]; then - rm -rf ${DEBIAN_DIR} -fi -if [ -f ${DEBIAN_POSTINST} ]; then - rm -f ${DEBIAN_POSTINST} -fi +# echo "I: Cleanup ${DRIVER_NAME} source" +# cd ${CWD} +# if [ -e ${DRIVER_FILE} ]; then +# rm -f ${DRIVER_FILE} +# fi +# if [ -d ${DRIVER_DIR} ]; then +# rm -rf ${DRIVER_DIR} +# fi +# if [ -d ${DEBIAN_DIR} ]; then +# rm -rf ${DEBIAN_DIR} +# fi +# if [ -f ${DEBIAN_POSTINST} ]; then +# rm -f ${DEBIAN_POSTINST} +# fi |