diff options
author | Christian Breunig <christian@breunig.cc> | 2024-09-25 20:24:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 20:24:47 +0200 |
commit | eff99f5eda19d5ddf324eb01abcc68577d942e62 (patch) | |
tree | 0a4256d787fcdda0bea8308f6a76c65ef1e7ad1b /scripts/package-build/linux-kernel/build-accel-ppp.sh | |
parent | fa50a5073b6d3f3bf1f213603c43373f5a980801 (diff) | |
parent | d235b31a095f9b8fdb2d5c231935c8b4b4c3da6c (diff) | |
download | vyos-build-eff99f5eda19d5ddf324eb01abcc68577d942e62.tar.gz vyos-build-eff99f5eda19d5ddf324eb01abcc68577d942e62.zip |
Merge pull request #772 from c-po/kernel-ephemeral-keys
T861: sign all Kernel modules with an ephemeral key
Diffstat (limited to 'scripts/package-build/linux-kernel/build-accel-ppp.sh')
-rwxr-xr-x | scripts/package-build/linux-kernel/build-accel-ppp.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/package-build/linux-kernel/build-accel-ppp.sh b/scripts/package-build/linux-kernel/build-accel-ppp.sh index 1685ff8d..a2f8df52 100755 --- a/scripts/package-build/linux-kernel/build-accel-ppp.sh +++ b/scripts/package-build/linux-kernel/build-accel-ppp.sh @@ -13,6 +13,10 @@ if [ ! -f ${KERNEL_VAR_FILE} ]; then exit 1 fi +cd ${ACCEL_SRC} +git reset --hard HEAD +git clean --force -d -x + PATCH_DIR=${CWD}/patches/accel-ppp if [ -d $PATCH_DIR ]; then cd ${ACCEL_SRC} @@ -36,6 +40,10 @@ cmake -DBUILD_IPOE_DRIVER=TRUE \ -DMODULES_KDIR=${KERNEL_VERSION}${KERNEL_SUFFIX} \ -DCPACK_TYPE=Debian12 .. make + +# Sign generated Kernel modules +${CWD}/sign-modules.sh . + cpack -G DEB # rename resulting Debian package according git description |