summaryrefslogtreecommitdiff
path: root/scripts/package-build/linux-kernel/build-nat-rtsp.sh
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-09-25 20:24:47 +0200
committerGitHub <noreply@github.com>2024-09-25 20:24:47 +0200
commiteff99f5eda19d5ddf324eb01abcc68577d942e62 (patch)
tree0a4256d787fcdda0bea8308f6a76c65ef1e7ad1b /scripts/package-build/linux-kernel/build-nat-rtsp.sh
parentfa50a5073b6d3f3bf1f213603c43373f5a980801 (diff)
parentd235b31a095f9b8fdb2d5c231935c8b4b4c3da6c (diff)
downloadvyos-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-nat-rtsp.sh')
-rwxr-xr-xscripts/package-build/linux-kernel/build-nat-rtsp.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/package-build/linux-kernel/build-nat-rtsp.sh b/scripts/package-build/linux-kernel/build-nat-rtsp.sh
index ec7d19a6..33f1311d 100755
--- a/scripts/package-build/linux-kernel/build-nat-rtsp.sh
+++ b/scripts/package-build/linux-kernel/build-nat-rtsp.sh
@@ -15,7 +15,10 @@ fi
. ${KERNEL_VAR_FILE}
-cd ${SRC} && make KERNELDIR=$KERNEL_DIR
+cd ${SRC}
+git reset --hard HEAD
+git clean --force -d -x
+make KERNELDIR=$KERNEL_DIR
# Copy binary to package directory
DEBIAN_DIR=tmp/lib/modules/${KERNEL_VERSION}${KERNEL_SUFFIX}/extra
@@ -26,6 +29,9 @@ DEBIAN_POSTINST="${CWD}/vyos-nat-rtsp.postinst"
echo "#!/bin/sh" > ${DEBIAN_POSTINST}
echo "/sbin/depmod -a ${KERNEL_VERSION}${KERNEL_SUFFIX}" >> ${DEBIAN_POSTINST}
+# Sign generated Kernel modules
+${CWD}/sign-modules.sh ${DEBIAN_DIR}
+
# Build Debian Package
fpm --input-type dir --output-type deb --name nat-rtsp \
--version $(git describe --tags --always) --deb-compression gz \
@@ -36,3 +42,7 @@ fpm --input-type dir --output-type deb --name nat-rtsp \
--license "GPL2" --chdir tmp
mv *.deb ..
+
+if [ -f ${DEBIAN_POSTINST} ]; then
+ rm -f ${DEBIAN_POSTINST}
+fi