X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=abi-debian-version.sh;h=310d6a802fbc228609d81f61daa62d4a702c4d85;hb=refs%2Fheads%2Fstable-2.7;hp=a864a2110b77b56f75a3c4bcd0653e82cca76870;hpb=72e6c528aad2cdd1152af21258a5f84870155b41;p=lttng-modules.git 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