Skip to content

Commit 61ffb1c

Browse files
authored
Update kernel to include network capabilities (#38)
1 parent 4d86dae commit 61ffb1c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lib/system/versions.go

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,17 @@ type KernelVersion string
88
const (
99
// Kernel versions from Kernel linux build
1010
Kernel_202511182 KernelVersion = "ch-6.12.8-kernel-1-202511182"
11+
Kernel_20251211 KernelVersion = "ch-6.12.8-kernel-2-20251211"
1112
)
1213

1314
var (
1415
// DefaultKernelVersion is the kernel version used for new instances
15-
DefaultKernelVersion = Kernel_202511182
16+
DefaultKernelVersion = Kernel_20251211
1617

1718
// SupportedKernelVersions lists all supported kernel versions
1819
SupportedKernelVersions = []KernelVersion{
1920
Kernel_202511182,
21+
Kernel_20251211,
2022
// Add future versions here
2123
}
2224
)
@@ -27,6 +29,10 @@ var KernelDownloadURLs = map[KernelVersion]map[string]string{
2729
"x86_64": "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-1-202511182/vmlinux-x86_64",
2830
"aarch64": "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-1-202511182/Image-arm64",
2931
},
32+
Kernel_20251211: {
33+
"x86_64": "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-2-20251211/vmlinux-x86_64",
34+
"aarch64": "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-2-20251211/Image-arm64",
35+
},
3036
// Add future versions here
3137
}
3238

@@ -38,4 +44,3 @@ func GetArch() string {
3844
}
3945
return arch
4046
}
41-

0 commit comments

Comments
 (0)