We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ccb920 commit fa0af9dCopy full SHA for fa0af9d
pkg/kernelrelease/kernelrelease.go
@@ -36,7 +36,7 @@ var supportedArchsSlice []string
36
// See compatibility matrix: https://falco.org/docs/event-sources/drivers/
37
var moduleMinKernelVersion = map[Architecture]semver.Version{
38
ArchitectureAmd64: semver.MustParse("2.6.0"),
39
- ArchitectureArm64: semver.MustParse("3.4.0"),
+ ArchitectureArm64: semver.MustParse("3.16.0"),
40
}
41
42
// Represents the minimum kernel version for which building the probe
pkg/kernelrelease/kernelrelease_test.go
@@ -232,11 +232,7 @@ func TestSupportsModule(t *testing.T) {
232
Architecture: ArchitectureArm64,
233
},
234
{
235
- Version: semver.Version{Major: 3, Minor: 3, Patch: 99},
236
- Architecture: ArchitectureArm64,
237
- },
238
- {
239
+ Version: semver.Version{Major: 3, Minor: 15, Patch: 99},
240
241
242
@@ -258,11 +254,11 @@ func TestSupportsModule(t *testing.T) {
258
254
Architecture: ArchitectureAmd64,
259
255
260
256
261
- Version: semver.Version{Major: 3, Minor: 4, Patch: 0},
257
+ Version: semver.Version{Major: 3, Minor: 16, Patch: 0},
262
263
264
265
- Version: semver.Version{Major: 3, Minor: 4, Patch: 1},
+ Version: semver.Version{Major: 3, Minor: 16, Patch: 1},
266
267
268
0 commit comments