Compare commits

...

1 Commits

Author SHA1 Message Date
thiagoftsm
0dbbb4e7e0 Apply patch to run binaries on Debian 10 2024-04-21 15:02:37 +00:00

View File

@@ -97,6 +97,9 @@ __u32 get_kernel_version(void)
if (sscanf(info.release, "%u.%u.%u", &major, &minor, &patch) != 3)
return 0;
if (major == 4 && minor == 19 && patch > 255)
return KERNEL_VERSION(major, minor, 255);
return KERNEL_VERSION(major, minor, patch);
}