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