2 # SPDX-License-Identifier: (GPL-2.0-only OR LGPL-2.1-only)
4 # First argument is the path to the kernel headers.
7 if [ ! -f "${KPATH}/include/generated/utsrelease.h" ]; then
12 # Assuming KPATH is the target kernel headers directory
13 UTS_RELEASE
=$
(sed -rn 's/^#define UTS_RELEASE "(.*)"/\1/p' "${KPATH}/include/generated/utsrelease.h")
14 FEDORA_VERSION
=$
(echo "${UTS_RELEASE}" |
sed -n 's/.*\.fc\([0-9]*\)\..*/\1/p')
16 if [ "x${FEDORA_VERSION}" = "x" ]; then
21 FEDORA_REVISION_VERSION
=$
(echo "${UTS_RELEASE}" |
sed -n 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)\-\([0-9]*\).*/\4/p')
22 echo "${FEDORA_REVISION_VERSION}"
This page took 0.031226 seconds and 4 git commands to generate.