From cd041d0c2077c6d64a6aea6c1e76d186c9fe6f0f Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 27 Apr 2015 15:30:03 -0400 Subject: [PATCH] Fix: don't clash with older Debian kernel versions Signed-off-by: Mathieu Desnoyers --- abi-debian-version.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/abi-debian-version.sh b/abi-debian-version.sh index a864a211..310d6a80 100755 --- a/abi-debian-version.sh +++ b/abi-debian-version.sh @@ -16,7 +16,14 @@ DEB_PACKAGE_VERSION=$(sed -rn 's/^#define LINUX_PACKAGE_ID " Debian (.*)"/\1/p' DEB_PACKAGE_VERSION=$(echo ${DEB_PACKAGE_VERSION} | sed -r 's/~(bpo|deb).*//') # Get -ckt update number, if present KERNEL_CKT_UPDATE=$(echo ${DEB_PACKAGE_VERSION} | sed -rn 's/^[0-9]+\.[0-9]+\.[0-9]+-ckt([0-9]+).*/\1/p') -test -n "${KERNEL_CKT_UPDATE}" || KERNEL_CKT_UPDATE=0 + +# Only care about the rest if it is a -ckt kernel, making sure we do not +# clash with older Debian kernels (e.g. Debian 3.2.65-1+deb7u2). +if [ -z "${KERNEL_CKT_UPDATE}" ]; then + echo 0 + exit 0 +fi + # Get package revision DEB_PACKAGE_REVISION=$(echo ${DEB_PACKAGE_VERSION} | sed -r 's/.*-([^-]+)$/\1/') # Get non-sec update number -- 2.34.1