Prebuilt Linux kernel artifacts for iximius Labs.
Useful if you need to build a kernel module without rebuilding the entire kernel.
Kernel/
linux-5.10.238/
drivers/
net/
vrf.ko # VRF kernel module built for 5.10.238
Module.symvers # Symbol versions from the matching kernel build
System.map # Kernel symbol map for the matching kernel build
linux-6.1.141/
drivers/
net/
vrf.ko # VRF kernel module built for 6.1.141
Module.symvers
System.map
linux-headers-5.10.238.tar.gz # Headers archive for 5.10.238
linux-headers-6.1.141.tar.gz # Headers archive for 6.1.141
- vrf.ko
- Linux VRF (Virtual Routing and Forwarding) driver as a loadable kernel module, compiled for the specific kernel version shown in the path.
- Module.symvers
- List of exported symbols and version checksums from the kernel build; used when building out‑of‑tree modules to ensure symbol compatibility.
- System.map
- Map of kernel symbol addresses corresponding to the exact kernel build; useful for low‑level debugging and symbol resolution.
- linux-headers-.tar.gz
- An archive of kernel headers for the exact kernel release; used as the build interface for out‑of‑tree modules.
These artifacts are tied to their exact kernel releases (including patch level). Use them only with systems running the same kernel version.