fix: Add missing 'pselect6_time32' and 'ppoll_time32' syscall overrides
[lttng-modules.git] / scripts / abi-debian-version.sh
... / ...
CommitLineData
1#!/bin/sh
2# SPDX-License-Identifier: (GPL-2.0-only OR LGPL-2.1-only)
3
4# First argument is the path to the kernel headers.
5KPATH="$1"
6
7if [ ! -f "${KPATH}/include/generated/package.h" ]; then
8 echo 0
9 exit 0
10fi
11
12# Debian snippet courtesy of Ben Hutchings
13
14# Assuming KPATH is the target kernel headers directory
15DEB_PACKAGE_VERSION=$(sed -rn 's/^#define LINUX_PACKAGE_ID " Debian (.*)"/\1/p' "${KPATH}/include/generated/package.h")
16
17# Ignore backports part
18DEB_PACKAGE_VERSION=$(echo "${DEB_PACKAGE_VERSION}" | sed -r 's/~(bpo|deb).*//')
19
20# ckt (Canonical Kernel Team) kernels were used for a while during the jessie
21# cycle, their versionning is a bit different. They track the upstream vanilla
22# stable updates but they don't update the minor version number and instead add
23# an additionnal -cktX. They were all 3.16.7-cktX and after a while the version
24# switched back to upstream style at 3.16.36.
25
26# Get -ckt update number, if present
27KERNEL_CKT_UPDATE=$(echo "${DEB_PACKAGE_VERSION}" | sed -rn 's/^[0-9]+\.[0-9]+\.[0-9]+-ckt([0-9]+).*/\1/p')
28test -n "${KERNEL_CKT_UPDATE}" || KERNEL_CKT_UPDATE=0
29
30# Get package revision
31DEB_PACKAGE_REVISION=$(echo "${DEB_PACKAGE_VERSION}" | sed -r 's/.*-([^-]+)$/\1/')
32# Get non-sec update number
33DEB_PACKAGE_REVISION_BASE=$(echo "${DEB_PACKAGE_REVISION}" | sed -r 's/^([0-9]+).*/\1/')
34# Get security update number, if present
35DEB_PACKAGE_REVISION_SECURITY=$(echo "${DEB_PACKAGE_REVISION}" | sed -rn 's/.*\+(squeeze|deb[0-9]+)+u([0-9]+)$/\2/p')
36test -n "${DEB_PACKAGE_REVISION_SECURITY}" || DEB_PACKAGE_REVISION_SECURITY=0
37# Combine all update numbers into one
38DEB_API_VERSION=$((KERNEL_CKT_UPDATE * 10000 + DEB_PACKAGE_REVISION_BASE * 100 + DEB_PACKAGE_REVISION_SECURITY))
39
40echo ${DEB_API_VERSION}
This page took 0.022156 seconds and 4 git commands to generate.