Skip to content

Commit

Permalink
fix: don't build certain kmods on kernel 6.8 (#148)
Browse files Browse the repository at this point in the history
force merge due to F40 build failures
  • Loading branch information
bsherman authored Mar 24, 2024
1 parent 9e3b5bf commit fc7b902
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build-kmod-gasket.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ARCH="$(rpm -E '%_arch')"
KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
RELEASE="$(rpm -E '%fedora')"

if [ "40" == "${RELEASE}" ]; then
echo "SKIPPED BUILD of gasket: compile failure on F40 as of 2024-03-17"
if [[ "${KERNEL}" =~ "6.8" ]]; then
echo "SKIPPED BUILD of rtl8814au: compile failure on kernel 6.8 as of 2024-03-17"
exit 0
fi

Expand Down
4 changes: 2 additions & 2 deletions build-kmod-rtl8814au.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ARCH="$(rpm -E '%_arch')"
KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
RELEASE="$(rpm -E '%fedora')"

if [ "40" == "${RELEASE}" ]; then
echo "SKIPPED BUILD of rtl8814au: compile failure on F40 as of 2024-03-17"
if [[ "${KERNEL}" =~ "6.8" ]]; then
echo "SKIPPED BUILD of rtl8814au: compile failure on kernel 6.8 as of 2024-03-17"
exit 0
fi

Expand Down
4 changes: 2 additions & 2 deletions build-kmod-rtl88xxau.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ARCH="$(rpm -E '%_arch')"
KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
RELEASE="$(rpm -E '%fedora')"

if [ "40" == "${RELEASE}" ]; then
echo "SKIPPED BUILD of rtl88xxau: compile failure on F40 as of 2024-03-17"
if [[ "${KERNEL}" =~ "6.8" ]]; then
echo "SKIPPED BUILD of rtl88xxau: compile failure on kernel 6.8 as of 2024-03-17"
exit 0
fi

Expand Down
5 changes: 2 additions & 3 deletions build-kmod-v4l2loopback.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ ARCH="$(rpm -E '%_arch')"
KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
RELEASE="$(rpm -E '%fedora')"


if [ "40" == "${RELEASE}" ]; then
echo "SKIPPED BUILD of v4l2loopback: compile failure on F40 as of 2024-03-17"
if [[ "${KERNEL}" =~ "6.8" ]]; then
echo "SKIPPED BUILD of v4l2loopback: compile failure on kernel 6.8 as of 2024-03-17"
exit 0
fi

Expand Down

0 comments on commit fc7b902

Please sign in to comment.