Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / scripts / abi-fedora-version.sh
CommitLineData
e4838da1 1#!/bin/sh
b7cdc182 2# SPDX-License-Identifier: (GPL-2.0-only OR LGPL-2.1-only)
e4838da1
LG
3
4# First argument is the path to the kernel headers.
5KPATH="$1"
6
7if [ ! -f "${KPATH}/include/generated/utsrelease.h" ]; then
8 echo 0
9 exit 0
10fi
11
12# Assuming KPATH is the target kernel headers directory
13UTS_RELEASE=$(sed -rn 's/^#define UTS_RELEASE "(.*)"/\1/p' "${KPATH}/include/generated/utsrelease.h")
14FEDORA_VERSION=$(echo "${UTS_RELEASE}" | sed -n 's/.*\.fc\([0-9]*\)\..*/\1/p')
15
16if [ "x${FEDORA_VERSION}" = "x" ]; then
17 echo 0
18 exit 0
19fi
20
21FEDORA_REVISION_VERSION=$(echo "${UTS_RELEASE}" | sed -n 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)\-\([0-9]*\).*/\4/p')
22echo "${FEDORA_REVISION_VERSION}"
This page took 0.038243 seconds and 4 git commands to generate.