You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -135,8 +135,8 @@ Hyperion is built on four principles:
135
135
Hyperion treats module compatibility as a **first-class feature**, not an afterthought.
136
136
137
137
**What this means in practice:**
138
-
- Kernel headers are installed to `/usr/src/linux-headers-6.19.6-Hyperion-0.1.0/`
139
-
- The build symlink `/lib/modules/6.19.6-Hyperion-0.1.0/build` always points to the correct headers directory
138
+
- Kernel headers are installed to `/usr/src/linux-headers-6.19.6-Hyperion-0.1.1/`
139
+
- The build symlink `/lib/modules/6.19.6-Hyperion-0.1.1/build` always points to the correct headers directory
140
140
-`CONFIG_IKHEADERS=y` makes headers available at `/sys/kernel/kheaders.tar.xz` as a runtime fallback
141
141
-`CONFIG_MODVERSIONS=y` means every exported symbol carries a CRC checksum — mismatched modules are rejected cleanly at `insmod` with a clear error, not a kernel panic
142
142
-`CONFIG_MODULE_SRCVERSION_ALL=y` embeds a srcversion hash in every module for traceability
@@ -219,7 +219,7 @@ make olddefconfig
219
219
make menuconfig
220
220
221
221
# 5. Build (use all cores)
222
-
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.0"
222
+
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.1"
223
223
224
224
# 6. Build modules
225
225
make modules -j$(nproc)
@@ -257,14 +257,14 @@ sudo reboot
257
257
258
258
# Verify identity
259
259
uname -r
260
-
# Expected: 6.19.6-Hyperion-0.1.0
260
+
# Expected: 6.19.6-Hyperion-0.1.1
261
261
262
262
uname -v
263
-
# Expected: #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.0 (Soumalya Das) 2026
263
+
# Expected: #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.1 (Soumalya Das) 2026
264
264
265
265
# Verify headers symlink
266
266
ls -la /lib/modules/$(uname -r)/build
267
-
# Should point to /usr/src/linux-headers-6.19.6-Hyperion-0.1.0
267
+
# Should point to /usr/src/linux-headers-6.19.6-Hyperion-0.1.1
268
268
269
269
# Test DKMS
270
270
sudo dkms status
@@ -279,7 +279,7 @@ sudo modprobe zram
279
279
```bash
280
280
sudo apt install v4l2loopback-dkms # or your distro equivalent
0 commit comments