โโโ โโโโโโ โโโโโโโโโโ โโโโโโโโโโโโโโโ โโโ โโโโโโโ โโโโ โโโ
โโโ โโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโ
โโโโโโโโ โโโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโ โโโ
โโโโโโโโ โโโโโ โโโโโโโ โโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโโโ
โโโ โโโ โโโ โโโ โโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โโโโโโ
โโโ โโโ โโโ โโโ โโโโโโโโโโโ โโโโโโ โโโโโโโ โโโ โโโโโ
H Y P E R I O N ยท v2.2.4
Linux 6.19.6 ยท Universal ยท Stable ยท God-Tier Daily Driver
Author: Soumalya Das ย |ย License: MIT ย |ย Base: Linux 6.19.6 ย |ย Year: 2026
- Overview
- What's New in v2.2.4
- Rust Language Support
- BORE Scheduler
- ADIOS I/O Scheduler
- GPU: DRM_GPUVM & Display Stack
- Developer Tools: KGDB, FTRACE, SYSRQ, SCHED_DEBUG
- Network: TAPRIO, UDP GRO, TCP Lowat
- ZRAM Dual-Stream LZ4HC
- GCC Build Optimisation Flags
- BPF & JIT
- sched-ext: Runtime BPF Schedulers
- x86 Instruction Tuning
- Filesystem Integrity & Unicode
- Virtualization & Container Hardening
- Security: Landlock & IPE
- Debug Discipline
- Philosophy
- Key Features
- Performance Configuration
- Hardware Support
- Security
- Build Instructions
- Installation
- Recommended Boot Parameters
- Runtime Tuning: sysctl Companion
- Troubleshooting
- Development Workflow
- Credits
- License
Hyperion Kernel is a custom Linux 6.19.6 kernel build engineered to be the definitive daily-driver kernel for every kind of Linux user โ gamers, developers, security engineers, audio producers, and tinkerers. It combines the best configuration practices from CachyOS, XanMod, Nobara, Liquorix, and upstream Linux into a single, fully integrated, zero-compromise bzImage.
v2.2.4 is the "Ultimate Performance" release โ the most comprehensive Hyperion build to date. It adds Rust language infrastructure, the BORE interactive scheduler, the ADIOS I/O scheduler, a full developer tracing and debugging suite, GPU virtual memory management, precision network schedulers, and dual-stream ZRAM compression. Every improvement is expressed as a kernel configuration choice backed by upstream in-tree code or documented companion patches. No staging code. No unmaintained drivers. Just the right config, fully documented, for every workload.
uname -r โ 6.19.6-Hyperion-2.2.4
uname -v โ #1 SMP PREEMPT Linux 6.19.6-Hyperion-2.2.4 (Soumalya Das) 2026
"Everything you need. Nothing you don't. Documented to the last bit."
CONFIG_RUST=y โ Rust is now a first-class citizen in the Hyperion build.
The Linux kernel's Rust infrastructure (merged Linux 6.1, actively expanding in 6.19) provides memory-safety guarantees at compile time for new kernel subsystems. Enabling Rust in the kernel does not change any existing C code or drivers โ it simply makes the Rust toolchain available for drivers that choose to use it.
Why it matters for 2026:
- New NVMe, network, and GPU driver implementations are being written in Rust upstream
- Apple Silicon GPU driver (Asahi Linux) requires Rust infrastructure
- Several new security modules and filesystem drivers are Rust-first
- Zero overhead when no Rust drivers are loaded โ Rust support is purely additive
Build requirement: rustc >= 1.78 + bindgen >= 0.65. Install with:
# Arch
sudo pacman -S rust rust-bindgen
# Fedora
sudo dnf install rust rust-bindgen-cli
# Check version
rustc --version && bindgen --version| Config | Value | Purpose |
|---|---|---|
CONFIG_RUST_IS_AVAILABLE |
y |
Rust toolchain detected and usable |
CONFIG_HAVE_RUST |
y |
Architecture declares Rust support |
CONFIG_RUST |
y |
Enable Rust in the kernel build |
CONFIG_RUST_BUILD_ASSERT_ALLOW |
n |
Keep build-time assertions (safety) |
CONFIG_SCHED_BORE=y โ the best interactive scheduler for Linux desktop and gaming, now enabled in Hyperion.
BORE extends the upstream EEVDF (Earliest Eligible Virtual Deadline First) scheduler with per-task burst accounting. Every task is tracked for how aggressively it historically consumes CPU time in short bursts. Interactive tasks โ games, audio daemons, terminals, compositors โ naturally have a low burst score because they consume CPU in brief spikes and then yield. Batch tasks โ compilers, video encoders, ML training โ have a high burst score because they run continuously.
BORE uses this burst history to give deadline priority to interactive tasks over batch tasks, even when both are technically "runnable" at the same time. The result is that your game, your audio, and your Wayland compositor feel perfectly smooth even when cargo build --release is pinning all your cores.
Why BORE over vanilla EEVDF / CFS:
| Scenario | CFS/EEVDF | BORE |
|---|---|---|
| Game under 100% compile load | Input latency spikes 2โ5 ms | Input latency stays < 1 ms |
| PipeWire at 64-frame quantum | Occasional xruns | No xruns |
| Terminal under heavy I/O | Sluggish | Instant response |
| Background ffmpeg + desktop | Compositor jank | Smooth 144 Hz |
BORE is the default scheduler in CachyOS and Nobara โ two of the most gaming-optimised Linux distributions. It ships as a patchset against the upstream kernel. The BURST_SMOOTHNESS=2 setting is the CachyOS-recommended balance between reactivity and throughput.
Source: github.com/firelzrd/bore-scheduler
| Config | Value | Purpose |
|---|---|---|
CONFIG_SCHED_BORE |
y |
Enable BORE burst-aware scheduling |
CONFIG_SCHED_BORE_BURST_SMOOTHNESS |
2 |
Burst score decay rate (2 = balanced) |
Tuning burst smoothness at runtime:
# More reactive (better for gaming)
echo 1 > /sys/kernel/debug/sched/bore_burst_smoothness
# More throughput-friendly (better for compiles)
echo 3 > /sys/kernel/debug/sched/bore_burst_smoothnessCONFIG_IOSCHED_ADIOS=y โ the CachyOS 2025 I/O scheduler, now the Hyperion default.
ADIOS (Adaptive Deadline I/O Scheduler) is a new I/O scheduler developed for CachyOS that combines the best properties of the Deadline and BFQ schedulers:
- From Deadline: simplicity and determinism โ every request has a hard deadline, preventing starvation
- From BFQ: per-queue fairness and latency awareness โ interactive processes (games, audio) never wait behind bulk I/O (package manager, backup)
- New in ADIOS: adaptive deadline calculation โ the scheduler learns the per-queue historical I/O latency and dynamically adjusts its deadlines to match real hardware behaviour
On NVMe drives in particular, ADIOS consistently outperforms both Kyber and BFQ in mixed desktop workloads (gaming + background compilation), because it does not over-parameterise its queuing model the way BFQ does.
Set as CONFIG_DEFAULT_IOSCHED="adios" โ active by default on all block devices at boot.
Source: CachyOS linux-cachyos kernel, 2025
| Config | Value | Purpose |
|---|---|---|
CONFIG_IOSCHED_ADIOS |
y |
Enable ADIOS scheduler |
CONFIG_DEFAULT_IOSCHED |
"adios" |
Set ADIOS as system default |
Switch scheduler per-device at runtime:
# Check available schedulers
cat /sys/block/nvme0n1/queue/scheduler
# Switch to BFQ for a spinning disk
echo bfq > /sys/block/sda/queue/scheduler
# Switch back to ADIOS for NVMe
echo adios > /sys/block/nvme0n1/queue/schedulerThree additions strengthen the Hyperion GPU stack for modern Vulkan workloads and laptop displays.
CONFIG_DRM_GPUVM=y โ required by Mesa 24.1+ Vulkan drivers.
The GPU VM manager is a unified framework for managing GPU virtual address spaces, introduced in Linux 6.7. Modern Mesa Vulkan drivers (radv for AMD RDNA2/3, anv for Intel Arc) use it to manage GPU address spaces without driver-specific hacks. Without it, Mesa falls back to slower legacy address space management and some GPU compute features (ROCm, OpenCL) are unavailable.
It is also required for Intel Arc SR-IOV vGPU support โ running multiple virtual GPU instances on a single Arc card.
CONFIG_DRM_EXEC=y โ correct multi-object GPU command submission.
Provides lock-based GPU object reservation for correct multi-object command submission without deadlocks. Required for hardware-accelerated video decode on RDNA3+ via Mesa VCN and for multi-queue Vulkan on Intel Xe.
CONFIG_DRM_PANEL=y, CONFIG_DRM_PANEL_SIMPLE=y, CONFIG_DRM_BRIDGE=y โ explicit inclusion for complete laptop display coverage.
Bridge chips connect GPU output to the physical connector (LVDS encoder, DP bridge, HDMI encoder). Many AMD and Intel laptops post-2020 use bridge chips for their internal eDP display. Without explicit inclusion of the panel and bridge subsystems, some laptop displays show as unconfigured in KMS even when the GPU driver probes correctly.
| Config | Value | Purpose |
|---|---|---|
CONFIG_DRM_GPUVM |
y |
GPU VM manager โ Mesa 24.1+ Vulkan |
CONFIG_DRM_EXEC |
y |
GPU execution context manager |
CONFIG_DRM_PANEL |
y |
DRM panel subsystem |
CONFIG_DRM_PANEL_SIMPLE |
y |
Generic eDP/LCD panel driver |
CONFIG_DRM_BRIDGE |
y |
Display bridge chip support |
v2.2.4 adds a full developer visibility suite. Every tool below has zero overhead at rest โ cost is incurred only when you actively use the tool.
CONFIG_KGDB=y โ attach GDB to a live or crashed kernel over serial or USB-serial.
KGDB turns any running Hyperion kernel into a full GDB target. You can inspect memory, set breakpoints, examine call stacks, and step through kernel code โ all from a remote GDB session over a serial cable or USB-to-serial adapter.
# Boot target kernel with kgdbwait to halt at boot until GDB attaches
# Add to kernel cmdline: kgdbwait kgdboc=ttyS0,115200
# On the host machine
gdb vmlinux
(gdb) target remote /dev/ttyUSB0
(gdb) bt # backtrace
(gdb) p current->comm # current process name
(gdb) l schedule # list scheduler codeCONFIG_KGDB_KDB=y โ KDB shell activates directly on the crashed machine's VT or serial console. No remote host required. Press Alt+SysRq+G to drop into KDB at any time.
[0]kdb> ps # list all processes
[0]kdb> bt # current backtrace
[0]kdb> md 0xffffffff81000000 32 # memory dump
[0]kdb> go # resume
| Config | Value | Purpose |
|---|---|---|
CONFIG_KGDB |
y |
Kernel GDB remote debugging |
CONFIG_KGDB_SERIAL_CONSOLE |
y |
Serial console transport |
CONFIG_KGDB_KDB |
y |
Built-in KDB shell on crash |
CONFIG_KDB_KEYBOARD |
y |
PS/2 keyboard access in KDB |
CONFIG_KDB_CONTINUE_CATASTROPHIC |
0 |
Halt on catastrophic error |
CONFIG_MAGIC_SYSRQ=y โ keyboard shortcuts that bypass the hung userspace and talk directly to the kernel.
When your Wayland compositor locks, when a process eats all RAM, when you need a clean emergency shutdown โ SysRq saves the filesystem.
| Key Combo | Action |
|---|---|
| Alt+SysRq+B | Immediate reboot (no sync) |
| Alt+SysRq+S | Emergency sync all filesystems |
| Alt+SysRq+U | Remount all filesystems read-only |
| Alt+SysRq+O | Power off immediately |
| Alt+SysRq+K | Kill all processes on current VT |
| Alt+SysRq+T | Dump all task states to dmesg |
| Alt+SysRq+M | Dump memory info to dmesg |
| Alt+SysRq+G | Enter KDB debugger |
| Alt+SysRq+E | Send SIGTERM to all processes |
| Alt+SysRq+I | Send SIGKILL to all processes |
The safe shutdown sequence (saves filesystem on a locked system):
Alt+SysRq+S โ Alt+SysRq+U โ Alt+SysRq+B
(sync) (remount-ro) (reboot)
| Config | Value | Purpose |
|---|---|---|
CONFIG_MAGIC_SYSRQ |
y |
Enable SysRq |
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE |
1 |
Enable all SysRq keys by default |
CONFIG_MAGIC_SYSRQ_SERIAL |
y |
SysRq over serial console |
CONFIG_FTRACE=y with the complete tracer suite โ the most powerful kernel observability tool available, now built into Hyperion.
Ftrace lets you trace function calls, measure interrupt latency, find preemption stalls, detect hardware latency, and profile the scheduler โ all without any external tools or module loading.
# Measure worst-case interrupt latency (audio glitch diagnosis)
echo irqsoff > /sys/kernel/debug/tracing/current_tracer
echo 1 > /sys/kernel/debug/tracing/tracing_on
# ... reproduce the glitch ...
echo 0 > /sys/kernel/debug/tracing/tracing_on
cat /sys/kernel/debug/tracing/trace
# Trace all calls to a specific function
echo schedule > /sys/kernel/debug/tracing/set_ftrace_filter
echo function > /sys/kernel/debug/tracing/current_tracer
echo 1 > /sys/kernel/debug/tracing/tracing_on
# Hardware latency detector (finds BIOS SMI/SMM stalls)
echo hwlat > /sys/kernel/debug/tracing/current_tracer
# Wakeup latency tracer (find scheduler stalls affecting audio/gaming)
echo wakeup > /sys/kernel/debug/tracing/current_tracer
# Use trace-cmd for comfortable recording
trace-cmd record -e sched:sched_wakeup -e sched:sched_switch sleep 5
trace-cmd report | head -50| Config | Value | Purpose |
|---|---|---|
CONFIG_FTRACE |
y |
Core function tracer infrastructure |
CONFIG_FUNCTION_TRACER |
y |
Per-function call tracing |
CONFIG_FUNCTION_GRAPH_TRACER |
y |
Call graph with timing |
CONFIG_IRQSOFF_TRACER |
y |
Worst-case IRQ-disabled latency |
CONFIG_PREEMPT_TRACER |
y |
Worst-case preempt-disabled latency |
CONFIG_SCHED_TRACER |
y |
Scheduler wakeup latency |
CONFIG_HWLAT_TRACER |
y |
Hardware (SMI/BIOS) latency detector |
CONFIG_OSNOISE_TRACER |
y |
OS noise measurement |
CONFIG_TIMERLAT_TRACER |
y |
Timer latency measurement |
CONFIG_DYNAMIC_FTRACE |
y |
Zero overhead when not tracing (NOP patching) |
CONFIG_DYNAMIC_FTRACE_WITH_REGS |
y |
Full register state on trace |
CONFIG_FPROBE |
y |
Function-level kprobe via ftrace |
CONFIG_FPROBE_EVENTS |
y |
Fprobe as trace events |
CONFIG_SCHED_DEBUG=y โ exposes /proc/sched_debug and /proc/schedstat for real-time scheduler inspection.
Essential for tuning BORE burst scores, monitoring sched-ext BPF scheduler behaviour, and diagnosing scheduling-related latency problems.
# Live scheduler state (per-CPU run queues, current tasks, latency stats)
watch -n 0.5 cat /proc/sched_debug
# Per-process scheduler statistics
cat /proc/self/sched
# Domain topology and load balancing stats
cat /proc/schedstat
# With sched-ext active: check which scheduler is running
cat /sys/kernel/sched_ext/ops_name
cat /sys/kernel/sched_ext/stateCONFIG_DYNAMIC_DEBUG=y โ toggle kernel debug messages per module, file, or function at runtime, with zero overhead when off (implemented as jump labels).
# Enable DRM debug messages for GPU troubleshooting
echo "module drm +p" > /sys/kernel/debug/dynamic_debug/control
# Enable AMDGPU-specific debug
echo "module amdgpu +p" > /sys/kernel/debug/dynamic_debug/control
# Enable USB debug for a specific file
echo "file drivers/usb/core/hub.c +p" > /sys/kernel/debug/dynamic_debug/control
# Disable all debug
echo "module drm -p" > /sys/kernel/debug/dynamic_debug/controlCONFIG_NET_SCH_TAPRIO=y (IEEE 802.1Qbv) โ the foundation for precision packet timing.
TAPRIO enables SO_TXTIME and SCM_TXTIME socket options, which allow applications to specify the exact nanosecond timestamp at which a packet should be transmitted. This is used by:
- QUIC / HTTP3 โ pacing packet bursts to avoid self-congestion
- Game networking stacks โ sending packets at precise intervals to reduce jitter
- Time-Sensitive Networking (TSN) โ industrial/audio real-time Ethernet
- PTP hardware timestamping โ sub-microsecond network clock synchronisation
CONFIG_NET_SCH_ETF=y (Earliest TxTime First) โ companion to TAPRIO. Ensures packets are dequeued in SO_TXTIME order, preventing out-of-order transmission on hardware that supports launch time offload.
CONFIG_UDP_GRO=y โ approximately 2ร UDP receive throughput for QUIC/HTTP3 workloads.
UDP GRO coalesces multiple small UDP datagrams into a single large skb before passing up the network stack. This dramatically reduces per-packet overhead for QUIC traffic (which uses many small UDP packets) and benefits any application that receives high-rate UDP streams (game servers, VoIP, DNS resolvers).
CONFIG_TCP_NOTSENT_LOWAT=y โ enables the SO_NOTSENT_LOWAT socket option.
This option prevents TCP from buffering more data in the kernel send buffer than can be sent immediately. Without it, applications that write aggressively to a TCP socket can fill the kernel buffer, adding hundreds of milliseconds of hidden latency โ the "kernel-side bufferbloat" problem. Setting SO_NOTSENT_LOWAT on gaming and streaming sockets eliminates this hidden delay.
| Config | Value | Purpose |
|---|---|---|
CONFIG_NET_SCH_TAPRIO |
y |
Time-Aware Priority Shaper (SO_TXTIME) |
CONFIG_NET_SCH_ETF |
y |
Earliest TxTime First dequeuing |
CONFIG_TCP_NOTSENT_LOWAT |
y |
SO_NOTSENT_LOWAT kernel-side bufferbloat fix |
CONFIG_UDP_GRO |
y |
~2ร UDP receive throughput |
CONFIG_GRO_CELLS |
y |
Multi-producer GRO for high-pps NICs |
CONFIG_NET_EMATCH |
y |
Extended TC classifier match framework |
CONFIG_ZRAM_DEF_COMP2="lz4hc" โ the secondary compression stream for ZRAM multi-comp.
With CONFIG_ZRAM_MULTI_COMP=y (already present since v2.2.4), ZRAM supports two compression algorithms simultaneously:
- Primary stream (
zstd): best compression ratio โ maximises the amount of data you can fit into ZRAM - Secondary stream (
lz4hc): LZ4 High Compression โ better ratio than plain LZ4, with 3โ4ร faster decompression than ZSTD under extreme memory pressure
When the system is critically low on memory and needs to decompress swap pages as fast as possible to recover, LZ4HC's speed advantage over ZSTD is the difference between a responsive system and a stall.
# Recommended ZRAM setup for a 32 GB system
echo 16G > /sys/block/zram0/disksize
echo zstd > /sys/block/zram0/comp_algorithm
echo lz4hc > /sys/block/zram0/comp_algorithm2
mkswap /dev/zram0
swapon -p 100 /dev/zram0
# Verify dual-stream is active
cat /sys/block/zram0/comp_algorithm
# Expected: [zstd] lz4hc lz4 deflate ...
# Check compression stats
cat /sys/block/zram0/mm_statOn a 32 GB system this configuration recovers approximately 3 GB of additional physical RAM versus single-stream ZSTD, with faster recovery under memory pressure peaks.
v2.2.4 documents the recommended KCFLAGS for squeezing maximum performance from the GCC-compiled kernel.
make -j$(nproc) \
LOCALVERSION="-Hyperion-2.2.4" \
KCFLAGS="-fivopts -fmodulo-sched -fno-semantic-interposition" \
bzImage modules| Flag | Effect |
|---|---|
-fivopts |
Induction variable optimisation โ restructures loop counter variables for better register allocation. Measurable win in tight loops (physics engines, video codecs, schedulers). |
-fmodulo-sched |
Software pipelining โ fills CPU execution slots between loop iterations by scheduling instructions from the next iteration. Benefit in audio DSP, SIMD loops, codec inner loops. |
-fno-semantic-interposition |
Allows GCC to inline and optimise calls within the same compilation unit that would otherwise be blocked by the default assumption of DSO interposition. ~3โ5% function call overhead reduction across the vmlinux binary. |
For Clang ThinLTO (even better โ requires Clang toolchain):
make -j$(nproc) \
CC=clang LD=ld.lld AR=llvm-ar NM=llvm-nm \
LOCALVERSION="-Hyperion-2.2.4" \
LLVM=1 LLVM_IAS=1 \
bzImage modulesClang ThinLTO (CONFIG_LTO_CLANG_THIN) provides link-time inlining across translation units โ the most impactful single optimisation available for kernel performance.
BPF is the backbone of networking, security (LSM), and scheduling (sched-ext) in 2026. Every BPF program must run at native machine speed via JIT โ interpreted BPF is 10โ100ร slower and carries additional Spectre-class attack surface.
| Config | Value | Impact |
|---|---|---|
CONFIG_BPF_JIT |
y |
BPF programs compile to native x86_64 โ prerequisite for everything else |
CONFIG_BPF_JIT_ALWAYS_ON |
y |
Removes the interpreter entirely; eliminates Spectre-BPF attack surface |
CONFIG_BPF_JIT_DEFAULT_ON |
y |
JIT active from boot without sysctl โ sched-ext and Cilium work out of the box |
CONFIG_BPF_UNPRIV_DEFAULT_OFF |
y |
Unprivileged users cannot load BPF; closes CVE-2021-3490/2022-0185/2023-2163 class |
Verify at runtime:
cat /proc/sys/net/core/bpf_jit_enable
# Expected: 1
cat /proc/sys/kernel/unprivileged_bpf_disabled
# Expected: 2 (fully disabled)CONFIG_SCHED_CLASS_EXT=y enables the extensible scheduler class merged in Linux 6.12. The CPU scheduling policy can now be replaced at runtime with a BPF program โ no reboot, no recompile.
Install the scx tools:
# Arch
yay -S scx-scheds
# From source (requires Rust)
git clone https://github.com/sched-ext/scx
cd scx && cargo build --release
sudo cp target/release/scx_* /usr/local/bin/Available schedulers:
| Scheduler | Best for | Notes |
|---|---|---|
scx_bpfland |
Desktop and gaming โ interactive-first, lowest input latency | BORE-compatible |
scx_lavd |
Latency-critical workloads โ the CachyOS default | Best with BORE |
scx_rusty |
NUMA workstations and multi-socket servers | Meta production |
scx_tickless |
HPC and ML inference โ aggressive tickless | Batch workloads |
# Load gaming scheduler
sudo scx_bpfland &
# Verify
cat /sys/kernel/sched_ext/state # Expected: enabled
cat /sys/kernel/sched_ext/ops_name # Expected: bpfland
# Switch to NUMA scheduler for a compile job
sudo pkill scx_bpfland && sudo scx_rusty &
# Revert to CFS/BORE
sudo pkill scx_rusty| Config | Impact |
|---|---|
CONFIG_X86_X2APIC=y |
Scales interrupt routing to 2^32 CPUs; reduces APIC register access latency on all platforms |
CONFIG_X86_CHECK_BIOS_CORRUPTION=y |
Periodic scan of BIOS reserved memory; catches firmware that silently overwrites kernel data |
CONFIG_X86_INTEL_USERCOPY_CHECK=y |
Selects ERMSB (enhanced REP MOVSB) for copy_to/from_user โ ~2ร throughput on Haswell+ for large syscall buffers |
CONFIG_X86_AMD_PSTATE_DEFAULT_MODE=3 |
Active EPP: AMD hardware manages its own boost in microseconds, faster than any OS governor |
| Config | Purpose |
|---|---|
CONFIG_FS_ENCRYPTION=y |
Per-file AES encryption (fscrypt) โ required by Android, ChromeOS, ext4 encrypt |
CONFIG_FS_VERITY=y |
Per-file Merkle-tree integrity โ Android APK signing, Flatpak runtime verification |
CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y |
Verity digests verifiable against kernel keyring โ enables IPE policy enforcement |
CONFIG_UNICODE=y + CONFIG_UNICODE_UTF8_DATA=y |
Case-insensitive directory lookups โ Steam/Wine Windows game asset compatibility |
All vhost/vsock options ensure zero-copy guest networking and reliable Waydroid/container communication:
| Config | Effect |
|---|---|
CONFIG_VHOST_NET=y |
Zero-copy virtio-net kernel backend โ eliminates one context switch per packet vs QEMU userspace |
CONFIG_VHOST_IOTLB=y |
IOMMU TLB for vhost devices โ required for SR-IOV VF passthrough correctness |
CONFIG_VHOST_VSOCK=y |
Kernel-side vsock accelerator for hostโguest RPC |
CONFIG_VSOCKETS=y + CONFIG_VSOCKETS_DIAG=y |
AF_VSOCK socket family + diagnostics |
CONFIG_VSOCK_LOOPBACK=y |
Loopback vsock โ fixes Waydroid clipboard, ADB, and full-UI |
CONFIG_SECURITY_LANDLOCK=y โ unprivileged per-process filesystem sandboxing. Unlike AppArmor/SELinux which require root policy configuration, Landlock is application-driven: any process can sandbox its own file access via syscall. Used by Flatpak, bubblewrap, and systemd-run --property=.
IPE enforces policies that restrict code execution to files residing on dm-verity or fs-verity verified filesystems.
# Example IPE policy: allow execution only from boot-verified root
policy_name="hyperion-lockdown" policy_version=0.0.1
DEFAULT action=DENY
op=EXECUTE boot_verified=TRUE action=ALLOW
| Config | Purpose |
|---|---|
CONFIG_SECURITY_IPE=y |
IPE LSM core |
CONFIG_IPE_PROP_BOOT_VERIFIED=y |
Expose dm-verity boot-verified property to policy |
CONFIG_IPE_PROP_DM_VERITY=y |
dm-verity integrity property |
CONFIG_IPE_PROP_FS_VERITY=y |
fs-verity file integrity property |
CONFIG_IPE_PROP_FS_VERITY_BUILTIN_SIG=y |
Signed verity property (kernel keyring) |
The following are intentionally disabled. Each one is documented so the decision is visible and reviewable:
| Config | Overhead | Decision |
|---|---|---|
CONFIG_DEBUG_PREEMPT |
~3% syscall overhead | Off โ preemption code is correct |
CONFIG_PROVE_LOCKING (lockdep) |
~40% lock overhead | Off โ use a debug kernel for lockdep |
CONFIG_DEBUG_ATOMIC_SLEEP |
False positives in audio RT | Off โ breaks legitimate RT paths |
CONFIG_DEBUG_VM |
Per-page overhead | Off โ unacceptable for gaming/media |
CONFIG_KASAN |
2ร memory overhead | Off โ use a sanitiser build separately |
CONFIG_UBSAN |
Codegen bloat | Off โ use a sanitiser build separately |
CONFIG_KCSAN |
~50% overhead | Off โ data race detection for development only |
Always on (zero overhead at rest):
CONFIG_STACKTRACE=yโ required byperf,bpftrace, BPF stack maps, crash dumpsCONFIG_KGDB=yโ dormant until activated via cmdline or SysRqCONFIG_FTRACE=ywithCONFIG_DYNAMIC_FTRACE=yโ all trace sites are NOPs until enabledCONFIG_DYNAMIC_DEBUG=yโ all debug messages are disabled jumps until toggledCONFIG_SCHED_DEBUG=yโ data gathered only on/proc/sched_debugreadCONFIG_LOCKUP_DETECTOR=yโ only fires when something is actually wrong
"A kernel should never be the reason your work stopped."
Hyperion is built on five principles:
-
Config-Driven โ improvements are kernel configuration choices backed by upstream code the kernel community maintains. No staging drivers. No out-of-tree patches for functionality available in-tree. BORE and ADIOS are the only patchset additions, and both are actively maintained with upstream submission in progress.
-
Documented Decisions โ every config option has a comment with its rationale and a source reference. This config is something you can read and learn from, not just apply blindly.
-
Performance Without Sacrifice โ every nanosecond of latency extracted from the hardware, never at the cost of correctness or stability. Debug infrastructure is included but costs nothing at rest.
-
Developer First โ KPROBES, UPROBE_EVENTS, KGDB, KDB, FTRACE with all tracers, DYNAMIC_DEBUG, bpftrace/bcc, LIVEPATCH, full sched-ext support, Rust infrastructure. The kernel is an observable, debuggable, modifiable system.
-
Universal by Default โ one
bzImageboots correctly on Arch, Ubuntu, Fedora, RHEL, openSUSE, Gentoo, and NixOS without configuration.
| Category | Feature | Details |
|---|---|---|
| Identity | Custom branding | uname -r โ 6.19.6-Hyperion-2.2.4 |
| Build | Monolithic image | All in-tree drivers promoted to =y โ zero module-load latency |
| Build | ZSTD compression | ~40% faster boot than GZIP on NVMe |
| Build | Rust support | CONFIG_RUST=y โ Rust kernel drivers enabled, GCC 14.2.0 |
| BPF | JIT always-on | Native x86_64 BPF, no interpreter, Spectre-BPF mitigated |
| BPF | Unprivileged blocked | BPF_UNPRIV_DEFAULT_OFF โ closes entire CVE class |
| Scheduler | BORE | Burst-Oriented Response Enhancer โ best interactive feel under load |
| Scheduler | sched-ext | Runtime-swappable BPF schedulers: scx_bpfland, scx_lavd, scx_rusty |
| Scheduler | Full preemption | PREEMPT=y + PREEMPT_DYNAMIC=y + PREEMPT_LAZY=y |
| Scheduler | Sub-ms ticks | SCHED_HRTICK=y โ hrtimer-resolution preemption |
| Timer | 1000 Hz | CONFIG_HZ_1000=y โ 1 ms scheduler granularity |
| IO | ADIOS | Adaptive Deadline I/O Scheduler โ CachyOS 2025 default |
| IO | BFQ + Kyber + Deadline | All schedulers built-in, switchable per-device |
| IO | io_uring | Built-in โ zero module-load delay |
| Memory | MGLRU + MMU walk | Accurate cold-page detection, fewer false evictions |
| Memory | ZRAM dual-stream | ZSTD primary + LZ4HC secondary via ZRAM_MULTI_COMP |
| Memory | ZSWAP ZSTD | Compressed in-RAM swap โ defeats OOM before it starts |
| Memory | BORE | Interactive tasks never OOM before batch tasks |
| Network | BBR default | Google's low-latency TCP congestion control |
| Network | CAKE qdisc | Best-in-class bufferbloat elimination |
| Network | TAPRIO | SO_TXTIME pacing for QUIC, TSN, game networking |
| Network | UDP GRO | ~2ร UDP receive throughput (QUIC/HTTP3) |
| Network | TCP_NOTSENT_LOWAT | Eliminates kernel-side bufferbloat |
| Network | WireGuard | Built-in modern VPN โ ~10 Gbps with ChaCha20-NI |
| Network | BPF sockmap | Zero-copy socket redirection for Cilium/Envoy |
| Filesystem | FS_VERITY | Per-file Merkle-tree integrity |
| Filesystem | FS_ENCRYPTION | Per-file fscrypt AES encryption |
| Filesystem | Unicode | Case-insensitive fs for Steam/Wine compatibility |
| CPU | AMD P-State Active | Mode 3 EPP โ best Zen3/4 boost |
| CPU | Intel P-State + HWP | Hardware-managed boost |
| CPU | X86_INTEL_USERCOPY_CHECK | ERMSB ~2ร faster userโkernel copies |
| GPU | DRM_GPUVM | GPU VM manager โ Mesa 24.1+ Vulkan (radv/anv) |
| GPU | DRM_EXEC | Multi-object GPU command submission |
| GPU | DRM_PANEL + DRM_BRIDGE | Laptop eDP display coverage |
| GPU | DRM_SCHED | Priority-aware GPU job scheduler |
| Security | IPE | Boot-verified integrity policy enforcement |
| Security | Landlock | Unprivileged per-process sandboxing |
| Security | AppArmor (default) | Arch, Ubuntu, Debian |
| Security | SELinux | Fedora, RHEL, CentOS |
| Security | BPF LSM | eBPF-based MAC policies |
| Dev | KGDB + KDB | Full GDB remote debugging + on-machine KDB shell |
| Dev | MAGIC_SYSRQ | Emergency kernel controls โ safe shutdown sequence |
| Dev | FTRACE | Full tracer suite: irqsoff, preemptoff, hwlat, wakeup, osnoise |
| Dev | SCHED_DEBUG | /proc/sched_debug for BORE/scx tuning |
| Dev | DYNAMIC_DEBUG | Per-site debug message toggle at runtime |
| Dev | KPROBES + UPROBES | bpftrace/bcc without configuration |
| Dev | LIVEPATCH | Zero-downtime CVE patching |
| Virt | VHOST_NET | Zero-copy virtio-net kernel backend |
| Virt | VSOCK_LOOPBACK | Waydroid clipboard/ADB fixed |
| Virt | KVM full | Intel VT-x + AMD-V, SEV, SEV-SNP, TDX |
| USB | Autosuspend off | USB_AUTOSUSPEND_DELAY=-1 โ no device ever sleeps |
| USB | 1 kHz polling | usbhid.mousepoll/kbpoll/jspoll=1 |
| Audio | SOF + HDA + AMD | Ice Lake through Meteor Lake, AMD ACP, RT5682, CS35L41 |
| Wi-Fi | Universal | ATH9K/10K/11K/12K, RTW88/89, MT7921/7925, IWLWIFI |
| Modules | IKHEADERS | In-kernel headers always available |
| Modules | MODVERSIONS | ABI mismatch caught at load, not panic |
Hyperion v2.2.4 ships with a three-layer scheduling stack:
- BORE (
CONFIG_SCHED_BORE=y) โ the base scheduler. Every process gets burst accounting. Interactive tasks always beat batch tasks in deadline competition. - sched-ext (
CONFIG_SCHED_CLASS_EXT=y) โ replaces the entire CFS/BORE policy at runtime with a BPF scheduler. Usescx_bpflandfor gaming,scx_lavdfor CachyOS-style interactive,scx_rustyfor NUMA. - PREEMPT_DYNAMIC โ boot parameter controls preemption model:
preempt=full(gaming),preempt=lazy(compile workloads),preempt=voluntary(server).
ADIOS is the new default. Switch per-device based on the hardware:
# NVMe (default: ADIOS โ best latency + throughput)
echo adios > /sys/block/nvme0n1/queue/scheduler
# Desktop HDD or SSHD (BFQ โ per-process fairness)
echo bfq > /sys/block/sda/queue/scheduler
# High-throughput server (deadline โ simple, deterministic)
echo deadline > /sys/block/nvme1n1/queue/scheduler# THP: madvise mode (apps that want THPs get them; small allocs don't waste memory)
echo madvise > /sys/kernel/mm/transparent_hugepage/enabled
# MGLRU: 4 generations (default)
echo 4 > /sys/kernel/mm/lru_gen/min_ttl_ms
# ZRAM multi-stream dual-comp setup
echo 16G > /sys/block/zram0/disksize
echo zstd > /sys/block/zram0/comp_algorithm
echo lz4hc > /sys/block/zram0/comp_algorithm2
mkswap /dev/zram0 && swapon -p 100 /dev/zram0| Vendor | Driver | Standards |
|---|---|---|
| Qualcomm/Atheros | ATH9K |
802.11n |
| Qualcomm/Atheros | ATH10K |
802.11ac |
| Qualcomm/Atheros | ATH11K |
Wi-Fi 6 (AX) |
| Qualcomm/Atheros | ATH12K |
Wi-Fi 7 (BE) |
| Realtek | RTW88 |
802.11ac |
| Realtek | RTW89 |
Wi-Fi 6/6E |
| Intel | IWLWIFI (DVM + MVM) |
802.11ac/ax โ AX200, AX210, AX211 |
| MediaTek | MT7921 |
Wi-Fi 6 |
| MediaTek | MT7925 |
Wi-Fi 7 |
| Broadcom | BRCMFMAC |
802.11ac |
All drivers are built-in (=y). No module loading required at boot.
| Driver | Hardware |
|---|---|
DRM_AMDGPU |
AMD GCN1 through RDNA3 โ FreeSync, ROCm/HSA |
DRM_I915 |
Intel Gen4 through Xe (Arc) |
DRM_XE |
Intel Arc/Battlemage |
DRM_NOUVEAU |
NVIDIA Turing/Ampere/Lovelace display |
DRM_VIRTIO_GPU |
QEMU/KVM guests |
DRM_GPUVM |
GPU VM manager for Mesa 24.1+ Vulkan (new in v2.2.4) |
| Platform | Coverage |
|---|---|
| Intel SOF | Ice Lake through Meteor Lake (10thโ14th gen) |
| AMD ACP | Ryzen 4000/5000/6000/7000 laptops |
| RT5682/CS35L41 | Virtually every modern laptop codec |
| USB audio | SND_USB_AUDIO=y with autosuspend off โ no DAC clicks |
NVMe (PCIe), NVMe-oF TCP/RDMA/FC, SATA AHCI, SCSI multi-queue, UFS โ all built-in. Filesystems: ext4, XFS, Btrfs, F2FS, NTFS3, exFAT, squashfs, EROFS, overlay, NFS v4.x, CIFS/SMB.
Three LSMs compiled in simultaneously; active LSM selected via security= cmdline:
| LSM | Default for | Activation |
|---|---|---|
| AppArmor | Arch, Ubuntu, Debian | Default |
| SELinux | Fedora, RHEL, Rocky | security=selinux |
| TOMOYO | openSUSE | security=tomoyo |
| Landlock | All | Per-process via syscall |
| BPF LSM | All | lsm=bpf,... cmdline |
| IPE | All | Policy loaded via securityfs |
Additional hardening active by default:
| Feature | Effect |
|---|---|
HARDENED_USERCOPY=y |
Buffer overflow detection at user/kernel boundaries |
RANDOMIZE_KSTACK_OFFSET_DEFAULT=y |
Per-syscall kernel stack randomisation |
INIT_STACK_ALL_ZERO=y |
Zero-initialise all stack variables |
FORTIFY_SOURCE=y |
GCC compile-time buffer length checks |
STACKPROTECTOR_STRONG=y |
Stack canary on all functions with local arrays |
PAGE_TABLE_ISOLATION=y + RETPOLINE=y |
Spectre/Meltdown mitigations |
BPF_UNPRIV_DEFAULT_OFF=y |
Closes entire unprivileged-BPF CVE class |
SECURITY_IPE=y |
Boot-verified integrity policy enforcement |
RANDOM_KMALLOC_CACHES=y |
Randomised slab caches defeating heap spray (Linux 6.6+) |
HARDENED_USERCOPY_FALLBACK=n |
Strict mode โ no fallback on boundary violations |
# Arch
sudo pacman -S base-devel bc cpio pahole python rust rust-bindgen
# Fedora
sudo dnf install gcc make bc cpio pahole python3 rust rust-bindgen-cli
# Debian/Ubuntu
sudo apt install build-essential bc cpio dwarves python3 rustc bindgen# Get kernel source
wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.19.6.tar.xz
tar -xf linux-6.19.6.tar.xz && cd linux-6.19.6
# Apply BORE and ADIOS patchsets (if not already in-tree)
for p in ../patches/*.patch; do patch -p1 --fuzz=5 < "$p"; done
# Apply config
cp ../hyperion.config .config
make olddefconfig LOCALVERSION="-Hyperion-2.2.4"
# Build (standard)
make -j$(nproc) LOCALVERSION="-Hyperion-2.2.4" bzImage modules
# Build with extra GCC performance flags
make -j$(nproc) \
LOCALVERSION="-Hyperion-2.2.4" \
KCFLAGS="-fivopts -fmodulo-sched -fno-semantic-interposition" \
bzImage modules
# Build with Clang ThinLTO (maximum performance, requires Clang)
make -j$(nproc) \
CC=clang LD=ld.lld AR=llvm-ar NM=llvm-nm \
LOCALVERSION="-Hyperion-2.2.4" \
LLVM=1 LLVM_IAS=1 \
bzImage modulessudo make modules_install
sudo make install
sudo update-grub # or grub2-mkconfig / grub-mkconfig per your distroGenerate initramfs:
# Arch (mkinitcpio)
sudo mkinitcpio -k 6.19.6-Hyperion-2.2.4 -g /boot/initramfs-hyperion-2.2.4.img
# Fedora/RHEL (dracut)
sudo dracut --force /boot/initramfs-6.19.6-Hyperion-2.2.4.img 6.19.6-Hyperion-2.2.4
# Debian/Ubuntu (update-initramfs)
sudo update-initramfs -c -k 6.19.6-Hyperion-2.2.4Post-install verification:
uname -r
# Expected: 6.19.6-Hyperion-2.2.4
cat /proc/sys/net/core/bpf_jit_enable
# Expected: 1
cat /sys/module/usbcore/parameters/autosuspend
# Expected: -1
# Verify v2.2.4 specific features
zcat /proc/config.gz | grep -E "^CONFIG_(RUST|SCHED_BORE|IOSCHED_ADIOS|KGDB|MAGIC_SYSRQ|FTRACE|DRM_GPUVM|NET_SCH_TAPRIO|UDP_GRO|ZRAM_MULTI_COMP)="
# Verify BORE is available
cat /sys/kernel/debug/sched/bore_burst_smoothness
# Expected: 2
# Verify ADIOS is the default scheduler
cat /sys/block/nvme0n1/queue/scheduler
# Expected: [adios] bfq kyber deadline mq-deadline nonequiet splash
preempt=full threadirqs
usbcore.autosuspend=-1 usbcore.use_persist=1
usbhid.mousepoll=1 usbhid.kbpoll=1 usbhid.jspoll=1
amd_pstate=active amd_iommu=pt
transparent_hugepage=madvise hugepagesz=2M hugepages=512
nohz_full=1-N rcu_nocbs=1-N skew_tick=1 nosoftlockup
lsm=landlock,lockdown,yama,integrity,apparmor,bpf
quiet splash
preempt=full threadirqs
usbcore.autosuspend=-1 usbcore.use_persist=1
usbhid.mousepoll=1 usbhid.kbpoll=1 usbhid.jspoll=1
intel_pstate=active
transparent_hugepage=madvise hugepagesz=2M hugepages=512
nohz_full=1-N rcu_nocbs=1-N skew_tick=1 nosoftlockup
lsm=landlock,lockdown,yama,integrity,apparmor,bpf
quiet splash preempt=full threadirqs
kgdboc=ttyS0,115200 # attach GDB over first serial port
# OR: kgdboc=kbd # use keyboard (requires KDB)
# To halt at boot: add kgdbwait
amd_pstate=active
lsm=landlock,lockdown,yama,integrity,apparmor,bpf
Replace N with your last CPU index (nproc --all minus 1).
Note: lsm= includes integrity (required for IMA/IPE) and places landlock first.
Add to /etc/sysctl.d/99-hyperion.conf:
# =============================================
# HYPERION v2.2.4 โ Recommended sysctl tuning
# =============================================
# Memory
vm.swappiness = 10 # Strongly prefer RAM over swap
vm.dirty_ratio = 10 # Flush dirty pages at 10% of RAM
vm.dirty_background_ratio = 5 # Start background writeback at 5%
vm.vfs_cache_pressure = 50 # Keep dentries/inodes cached longer
kernel.numa_balancing = 1 # NUMA page migration enabled
# Networking
net.core.default_qdisc = fq
net.ipv4.tcp_congestion_control = bbr
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_rmem = 4096 87380 16777216
net.ipv4.tcp_wmem = 4096 65536 16777216
net.ipv4.tcp_fastopen = 3 # Client + server TFO
net.core.netdev_max_backlog = 8192 # NIC receive queue depth
# BPF / unprivileged
kernel.unprivileged_bpf_disabled = 2
# Scheduler
kernel.sched_autogroup_enabled = 1Apply immediately:
sudo sysctl -p /etc/sysctl.d/99-hyperion.conf# Confirm BORE is compiled in
zcat /proc/config.gz | grep SCHED_BORE
# Expected: CONFIG_SCHED_BORE=y
# Read current burst smoothness
cat /sys/kernel/debug/sched/bore_burst_smoothness
# Expected: 2
# Make more reactive for gaming (persist across boots via sysctl)
echo 1 > /sys/kernel/debug/sched/bore_burst_smoothnesszcat /proc/config.gz | grep IOSCHED_ADIOS
# Expected: CONFIG_IOSCHED_ADIOS=y
cat /sys/block/nvme0n1/queue/scheduler
# If adios is missing, the ADIOS patch was not applied to the source tree
# Check: ls ../patches/ | grep adios# Ensure kgdboc is set in cmdline
cat /proc/cmdline | grep kgdboc
# Trigger entry into KGDB from a running system
echo g > /proc/sysrq-trigger
# Then from host:
gdb vmlinux
(gdb) target remote /dev/ttyUSB0# Check tracer is set
cat /sys/kernel/debug/tracing/current_tracer
# Check tracing is on
cat /sys/kernel/debug/tracing/tracing_on
# Enable and collect
echo irqsoff > /sys/kernel/debug/tracing/current_tracer
echo 1 > /sys/kernel/debug/tracing/tracing_on
sleep 2
echo 0 > /sys/kernel/debug/tracing/tracing_on
cat /sys/kernel/debug/tracing/trace | head -40# Check kernel support
zcat /proc/config.gz | grep SCHED_CLASS_EXT
# Expected: CONFIG_SCHED_CLASS_EXT=y
# Check BPF JIT is on
cat /proc/sys/net/core/bpf_jit_enable
# Expected: 1
# Install scx tools
which scx_bpfland || yay -S scx-scheds# Check IPE is active
ls /sys/kernel/security/ipe/
# If empty, add "integrity" to lsm= cmdline parameter
# Check FS verity is supported on your filesystem
tune2fs -l /dev/sdX | grep -i verityzcat /proc/config.gz | grep ZRAM_MULTI_COMP
# Expected: CONFIG_ZRAM_MULTI_COMP=y
# Check available algorithms
cat /sys/block/zram0/comp_algorithm
# Expected: ... [zstd] lz4hc ...
# If lz4hc is missing from list, kernel was built without lz4hc support
zcat /proc/config.gz | grep LZ4HC# Check rustc version (needs >= 1.78)
rustc --version
# Check bindgen
bindgen --version
# If wrong version, use rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup install 1.78
rustup override set 1.78lspci -k | grep -A3 -i "wireless\|network"
dmesg | grep -i "firmware\|ath\|iwl\|rtw\|mt76"
# All drivers require firmware blobs from linux-firmware
sudo pacman -S linux-firmware # Arch
sudo apt install firmware-linux # Debian/Ubuntu
sudo dnf install linux-firmware # Fedorapatches/*.patch โ patch -p1 โ hyperion.config โ make olddefconfig โ bzImage
- Config changes: edit
hyperion.configdirectly. Every option needs a comment with rationale and source. Follow the inline comment style. - Source patches: add
NNNN-description.patchtopatches/. BORE and ADIOS live here. - Build:
bash scripts/build-kernel.shor the manualmakecommands above - CI: auto-builds on every push via
.github/workflows/build.yml
#!/bin/bash
# hyperion-verify.sh
declare -A checks=(
[RUST]="CONFIG_RUST=y"
[BORE]="CONFIG_SCHED_BORE=y"
[ADIOS]="CONFIG_IOSCHED_ADIOS=y"
[KGDB]="CONFIG_KGDB=y"
[SYSRQ]="CONFIG_MAGIC_SYSRQ=y"
[FTRACE]="CONFIG_FTRACE=y"
[DRM_GPUVM]="CONFIG_DRM_GPUVM=y"
[TAPRIO]="CONFIG_NET_SCH_TAPRIO=y"
[UDP_GRO]="CONFIG_UDP_GRO=y"
[ZRAM_MULTI]="CONFIG_ZRAM_MULTI_COMP=y"
[SCHED_EXT]="CONFIG_SCHED_CLASS_EXT=y"
[BBR]="CONFIG_TCP_CONG_BBR=y"
[BPF_JIT]="CONFIG_BPF_JIT=y"
[IPE]="CONFIG_SECURITY_IPE=y"
[BORE_SMOOTHNESS]="CONFIG_SCHED_BORE_BURST_SMOOTHNESS=2"
)
echo "=== Hyperion v2.2.4 Feature Verification ==="
for name in "${!checks[@]}"; do
val="${checks[$name]}"
if zcat /proc/config.gz 2>/dev/null | grep -q "^$val"; then
echo " โ
$name"
else
echo " โ $name (expected: $val)"
fi
done| Role | Name |
|---|---|
| Linux Kernel Developer | Soumalya Das |
| Base Kernel | Linus Torvalds & the Linux kernel community |
| Config inspiration | CachyOS, XanMod, Nobara, Liquorix, Arch, Fedora, Ubuntu |
| BORE Scheduler | Masahito Suzuki (firelzrd) |
| ADIOS I/O Scheduler | CachyOS kernel team |
| sched-ext / BPF schedulers | sched-ext/scx project, CachyOS team |
| sched-ext framework | Tejun Heo, David Vernet |
| BPF/JIT | Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko |
| Rust for Linux | Miguel Ojeda, Alex Gaynor, and the Rust for Linux team |
| IPE framework | Fan Wu, Deven Bowers (Microsoft) |
| Landlock | Mickaรซl Salaรผn |
| ZRAM multi-comp | Sergey Senozhatsky |
| FS Verity | Eric Biggers (Google) |
| DRM_GPUVM | Thomas Hellstrรถm (Intel) |
| UDP GRO | Eric Dumazet (Google) |
| TAPRIO / TSN | Vinicius Costa Gomes (Intel) |
| AMD P-State | AMD Open Source driver team |
| Intel P-State | Intel Open Source Technology Center |
| BORE burst smoothness | Masahito Suzuki, CachyOS integration |
| BPF sockmap | John Fastabend, Daniel Borkmann |
| Memory management | MGLRU: Yu Zhao (Google); DAMON: SeongJae Park (Amazon) |
| PREEMPT_LAZY | Peter Zijlstra, Thomas Gleixner |
| USB autosuspend analysis | Sarah Sharp, Alan Stern |
| Live kernel patching | Josh Poimboeuf (Red Hat) |
| Security hardening | Kees Cook |
| KGDB | Jason Wessel |
| ftrace / dynamic tracing | Steven Rostedt |
| Performance research | Phoronix, LKML, r/linux_gaming, CachyOS/XanMod teams |
Hyperion Kernel configuration, scripts, and documentation are released under the MIT License.
The Linux kernel itself is licensed under GPL-2.0-only.
Built with precision. Tuned for humans. Named after a Titan.
Hyperion Kernel v2.2.4 ยท Soumalya Das ยท 2026
๐ง ๐งโก๐ฆ