netd: Remove <4.14 kernel restrictions

Change-Id: I4d4abbacd6b9589260de06663e2143bc37d8ea0f
This commit is contained in:
Michael Bestas
2024-03-15 14:59:21 +02:00
committed by Michael Bestas
parent f85946eea7
commit f586ef9a1f

View File

@@ -75,16 +75,6 @@ static Status initPrograms(const char* cg2_path) {
// This code was mainlined in T, so this should be trivially satisfied. // This code was mainlined in T, so this should be trivially satisfied.
if (!modules::sdklevel::IsAtLeastT()) return Status("S- platform is unsupported"); if (!modules::sdklevel::IsAtLeastT()) return Status("S- platform is unsupported");
// S requires eBPF support which was only added in 4.9, so this should be satisfied.
if (!bpf::isAtLeastKernelVersion(4, 9, 0)) {
return Status("kernel version < 4.9.0 is unsupported");
}
// U bumps the kernel requirement up to 4.14
if (modules::sdklevel::IsAtLeastU() && !bpf::isAtLeastKernelVersion(4, 14, 0)) {
return Status("U+ platform with kernel version < 4.14.0 is unsupported");
}
if (modules::sdklevel::IsAtLeastV()) { if (modules::sdklevel::IsAtLeastV()) {
// V bumps the kernel requirement up to 4.19 // V bumps the kernel requirement up to 4.19
// see also: //system/netd/tests/kernel_test.cpp TestKernel419 // see also: //system/netd/tests/kernel_test.cpp TestKernel419