Skip to content

Commit 7bf3f03

Browse files
bump up version
1 parent cd158ec commit 7bf3f03

10 files changed

Lines changed: 66 additions & 66 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# kernel.org omits ".0" sublevel: linux-6.19.tar.xz not linux-6.19.0.tar.xz
6565
FULL_VERSION = f"{VERSION}.{PATCH}" if SUB == 0 else f"{VERSION}.{PATCH}.{SUB}"
6666
67-
# Extract Hyperion semver from LOCAL ("-Hyperion-0.1.0" -> "0.1.0")
67+
# Extract Hyperion semver from LOCAL ("-Hyperion-0.1.1" -> "0.1.1")
6868
HYPERION_VER = LOCAL.split('-Hyperion-', 1)[-1] if '-Hyperion-' in LOCAL else LOCAL.lstrip('-')
6969
7070
TAG = HYPERION_VER

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
**Author:** Soumalya Das  |  **License:** MIT  |  **Base:** Linux 6.19.6 LTS  |  **Year:** 2026
1515

1616
[![Build Status](https://img.shields.io/github/actions/workflow/status/pro-grammer-SD/hyperion/build.yml?style=flat-square&label=Kernel%20Build)](https://github.com/pro-grammer-SD/hyperion/actions)
17-
[![Kernel Version](https://img.shields.io/badge/kernel-6.19.6--Hyperion--0.1.0-blue?style=flat-square)](https://kernel.org)
17+
[![Kernel Version](https://img.shields.io/badge/kernel-6.19.6--Hyperion--0.1.1-blue?style=flat-square)](https://kernel.org)
1818
[![Architecture](https://img.shields.io/badge/arch-x86__64-green?style=flat-square)](#supported-architectures)
1919
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](LICENSE)
2020
[![DKMS Compatible](https://img.shields.io/badge/DKMS-Compatible-brightgreen?style=flat-square)](#dkms-compatibility)
@@ -53,8 +53,8 @@ Hyperion is designed for:
5353
- Developers building and testing kernel modules without fighting header or symbol versioning issues
5454

5555
```
56-
uname -r → 6.19.6-Hyperion-0.1.0
57-
uname -v → #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.0 (Soumalya Das) 2026
56+
uname -r → 6.19.6-Hyperion-0.1.1
57+
uname -v → #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.1 (Soumalya Das) 2026
5858
```
5959

6060
---
@@ -76,7 +76,7 @@ Hyperion is built on four principles:
7676

7777
| Category | Feature | Details |
7878
|---|---|---|
79-
| **Identity** | Custom branding | `uname -r``6.19.6-Hyperion-0.1.0` |
79+
| **Identity** | Custom branding | `uname -r``6.19.6-Hyperion-0.1.1` |
8080
| **Scheduler** | Full preemption | `CONFIG_PREEMPT=y` — lowest latency desktop |
8181
| **Scheduler** | Autogroup | `CONFIG_SCHED_AUTOGROUP=y` — session-aware scheduling |
8282
| **Timer** | 1000 Hz tick | `CONFIG_HZ_1000=y` — 1ms granularity |
@@ -135,8 +135,8 @@ Hyperion is built on four principles:
135135
Hyperion treats module compatibility as a **first-class feature**, not an afterthought.
136136

137137
**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
140140
- `CONFIG_IKHEADERS=y` makes headers available at `/sys/kernel/kheaders.tar.xz` as a runtime fallback
141141
- `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
142142
- `CONFIG_MODULE_SRCVERSION_ALL=y` embeds a srcversion hash in every module for traceability
@@ -219,7 +219,7 @@ make olddefconfig
219219
make menuconfig
220220

221221
# 5. Build (use all cores)
222-
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.0"
222+
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.1"
223223

224224
# 6. Build modules
225225
make modules -j$(nproc)
@@ -257,14 +257,14 @@ sudo reboot
257257

258258
# Verify identity
259259
uname -r
260-
# Expected: 6.19.6-Hyperion-0.1.0
260+
# Expected: 6.19.6-Hyperion-0.1.1
261261

262262
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
264264

265265
# Verify headers symlink
266266
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
268268

269269
# Test DKMS
270270
sudo dkms status
@@ -279,7 +279,7 @@ sudo modprobe zram
279279
```bash
280280
sudo apt install v4l2loopback-dkms # or your distro equivalent
281281
sudo dkms status
282-
# v4l2loopback/0.12.x, 6.19.6-Hyperion-0.1.0, x86_64: installed
282+
# v4l2loopback/0.12.x, 6.19.6-Hyperion-0.1.1, x86_64: installed
283283
```
284284

285285
---

ci/reproducible-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
set -euo pipefail
1313

1414
KERNEL_VERSION="${1:-6.19.6}"
15-
HYPERION_VERSION="0.1.0"
15+
HYPERION_VERSION="0.1.1"
1616
SOURCE_DIR="${2:-./linux-${KERNEL_VERSION%.*}}"
1717

1818
# Fixed timestamp for reproducible builds (ISO 8601)

docs/build.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ done
9292
```bash
9393
# Build the kernel image, modules, and DTBs
9494
# Use all available CPU cores for maximum speed
95-
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.0" 2>&1 | tee build.log
95+
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.1" 2>&1 | tee build.log
9696

9797
# Build modules only
9898
make modules -j$(nproc)
@@ -137,10 +137,10 @@ sudo reboot
137137

138138
```bash
139139
uname -r
140-
# Expected: 6.19.6-Hyperion-0.1.0
140+
# Expected: 6.19.6-Hyperion-0.1.1
141141

142142
uname -v
143-
# Expected: #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.0 (Soumalya Das) 2026
143+
# Expected: #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.1 (Soumalya Das) 2026
144144

145145
# Verify headers symlink exists
146146
ls -la /lib/modules/$(uname -r)/build

docs/dkms-compatibility.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ sudo make headers_install INSTALL_HDR_PATH=/usr
9090
sudo make modules_prepare
9191

9292
# Step 3: Copy full headers directory
93-
KVER="6.19.6-Hyperion-0.1.0"
93+
KVER="6.19.6-Hyperion-0.1.1"
9494
sudo mkdir -p /usr/src/linux-headers-${KVER}
9595

9696
# Copy all header files
@@ -106,7 +106,7 @@ sudo ln -sfn /usr/src/linux-headers-${KVER} \
106106

107107
# Verify
108108
ls -la /lib/modules/${KVER}/build
109-
# → /lib/modules/6.19.6-Hyperion-0.1.0/build -> /usr/src/linux-headers-6.19.6-Hyperion-0.1.0
109+
# → /lib/modules/6.19.6-Hyperion-0.1.1/build -> /usr/src/linux-headers-6.19.6-Hyperion-0.1.1
110110
```
111111

112112
The `install-headers.sh` script does all of this automatically.
@@ -147,7 +147,7 @@ sudo dnf install akmod-nvidia # Fedora (akmods variant)
147147

148148
# Verify
149149
sudo dkms status | grep nvidia
150-
# nvidia/550.54.14, 6.19.6-Hyperion-0.1.0, x86_64: installed ✓
150+
# nvidia/550.54.14, 6.19.6-Hyperion-0.1.1, x86_64: installed ✓
151151

152152
# Load
153153
sudo modprobe nvidia
@@ -190,7 +190,7 @@ with the current kernel's CRC.
190190

191191
**Hyperion provides** `Module.symvers` at:
192192
```
193-
/usr/src/linux-headers-6.19.6-Hyperion-0.1.0/Module.symvers
193+
/usr/src/linux-headers-6.19.6-Hyperion-0.1.1/Module.symvers
194194
```
195195

196196
DKMS automatically uses this file during module builds via:

docs/installation.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd linux-6.19.6
1313
sudo make modules_install
1414
```
1515

16-
This installs `.ko` files to `/lib/modules/6.19.6-Hyperion-0.1.0/`.
16+
This installs `.ko` files to `/lib/modules/6.19.6-Hyperion-0.1.1/`.
1717

1818
### 2. Install Headers
1919

@@ -23,8 +23,8 @@ sudo bash /path/to/hyperion/scripts/install-headers.sh
2323

2424
This:
2525
- Runs `make headers_install` to install sanitised user-space headers
26-
- Copies build artifacts to `/usr/src/linux-headers-6.19.6-Hyperion-0.1.0/`
27-
- Creates the `/lib/modules/6.19.6-Hyperion-0.1.0/build` symlink
26+
- Copies build artifacts to `/usr/src/linux-headers-6.19.6-Hyperion-0.1.1/`
27+
- Creates the `/lib/modules/6.19.6-Hyperion-0.1.1/build` symlink
2828
- Triggers DKMS to rebuild all registered modules for the new kernel
2929

3030
### 3. Install Kernel Image
@@ -65,7 +65,7 @@ DKMS modules will auto-build for the new kernel after headers are installed.
6565
sudo dkms status
6666

6767
# Force rebuild for current kernel
68-
sudo dkms autoinstall -k 6.19.6-Hyperion-0.1.0
68+
sudo dkms autoinstall -k 6.19.6-Hyperion-0.1.1
6969

7070
# Example: NVIDIA
7171
sudo apt install nvidia-dkms-550 # Debian/Ubuntu
@@ -90,15 +90,15 @@ sudo apt install v4l2loopback-dkms
9090
sudo reboot
9191

9292
# After reboot:
93-
uname -r # Should show: 6.19.6-Hyperion-0.1.0
93+
uname -r # Should show: 6.19.6-Hyperion-0.1.1
9494
uname -a # Full version string with author credit
9595

9696
# Verify headers are at the correct path
97-
ls /usr/src/linux-headers-6.19.6-Hyperion-0.1.0/
97+
ls /usr/src/linux-headers-6.19.6-Hyperion-0.1.1/
9898

9999
# Verify build symlink
100100
readlink /lib/modules/$(uname -r)/build
101-
# Should show: /usr/src/linux-headers-6.19.6-Hyperion-0.1.0
101+
# Should show: /usr/src/linux-headers-6.19.6-Hyperion-0.1.1
102102

103103
# Verify DKMS modules all built
104104
sudo dkms status
@@ -114,20 +114,20 @@ ls /sys/kernel/kheaders.tar.xz
114114

115115
```bash
116116
# Remove kernel image and associated files
117-
sudo rm -f /boot/vmlinuz-6.19.6-Hyperion-0.1.0
118-
sudo rm -f /boot/initrd.img-6.19.6-Hyperion-0.1.0
119-
sudo rm -f /boot/System.map-6.19.6-Hyperion-0.1.0
120-
sudo rm -f /boot/config-6.19.6-Hyperion-0.1.0
117+
sudo rm -f /boot/vmlinuz-6.19.6-Hyperion-0.1.1
118+
sudo rm -f /boot/initrd.img-6.19.6-Hyperion-0.1.1
119+
sudo rm -f /boot/System.map-6.19.6-Hyperion-0.1.1
120+
sudo rm -f /boot/config-6.19.6-Hyperion-0.1.1
121121

122122
# Remove modules
123-
sudo rm -rf /lib/modules/6.19.6-Hyperion-0.1.0/
123+
sudo rm -rf /lib/modules/6.19.6-Hyperion-0.1.1/
124124

125125
# Remove headers
126-
sudo rm -rf /usr/src/linux-headers-6.19.6-Hyperion-0.1.0/
126+
sudo rm -rf /usr/src/linux-headers-6.19.6-Hyperion-0.1.1/
127127

128128
# Update bootloader
129129
sudo update-grub # or your distro equivalent
130130

131131
# Remove DKMS records for this kernel
132-
sudo dkms remove --all -k 6.19.6-Hyperion-0.1.0
132+
sudo dkms remove --all -k 6.19.6-Hyperion-0.1.1
133133
```

docs/kernel-attribution.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ all version strings, `uname` output, and boot messages correctly identify as
77
Expected result:
88

99
```
10-
Linux version 6.19.6-Hyperion-0.1.0 (Soumalya Das) (gcc version 13.2.0) #1 SMP PREEMPT 2026
10+
Linux version 6.19.6-Hyperion-0.1.1 (Soumalya Das) (gcc version 13.2.0) #1 SMP PREEMPT 2026
1111
```
1212

1313
---
@@ -28,12 +28,12 @@ NAME = Hurr durr I'ma ninja sloth
2828
VERSION = 6
2929
PATCHLEVEL = 12
3030
SUBLEVEL = 0
31-
EXTRAVERSION = -Hyperion-0.1.0
31+
EXTRAVERSION = -Hyperion-0.1.1
3232
NAME = Hyperion
3333
```
3434

3535
The `EXTRAVERSION` is what appears in `uname -r` **when not overridden by**
36-
`CONFIG_LOCALVERSION`. Since we also set `CONFIG_LOCALVERSION="-Hyperion-0.1.0"`
36+
`CONFIG_LOCALVERSION`. Since we also set `CONFIG_LOCALVERSION="-Hyperion-0.1.1"`
3737
in `hyperion.config`, they work together. Set `EXTRAVERSION` in Makefile to
3838
empty and rely on `CONFIG_LOCALVERSION` for flexibility, OR set both to the
3939
same value for a hard-coded build.
@@ -42,7 +42,7 @@ same value for a hard-coded build.
4242

4343
```makefile
4444
EXTRAVERSION =
45-
# CONFIG_LOCALVERSION="-Hyperion-0.1.0" in .config handles the suffix
45+
# CONFIG_LOCALVERSION="-Hyperion-0.1.1" in .config handles the suffix
4646
```
4747

4848
---
@@ -51,16 +51,16 @@ EXTRAVERSION =
5151

5252
```kconfig
5353
# In hyperion.config (already set):
54-
CONFIG_LOCALVERSION="-Hyperion-0.1.0"
54+
CONFIG_LOCALVERSION="-Hyperion-0.1.1"
5555
CONFIG_LOCALVERSION_AUTO=n
5656
```
5757

58-
This produces: `6.19.6-Hyperion-0.1.0`
58+
This produces: `6.19.6-Hyperion-0.1.1`
5959

6060
**Build-time override** (takes precedence over config):
6161

6262
```bash
63-
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.0"
63+
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.1"
6464
```
6565

6666
---
@@ -104,7 +104,7 @@ In your build environment:
104104
```bash
105105
export KBUILD_BUILD_USER="Soumalya Das"
106106
export KBUILD_BUILD_HOST="hyperion-build"
107-
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.0"
107+
make -j$(nproc) LOCALVERSION="-Hyperion-0.1.1"
108108
```
109109

110110
This is the **recommended approach** as it requires no source modification.
@@ -128,10 +128,10 @@ If you want to also embed the git commit hash:
128128

129129
```bash
130130
# In scripts/setlocalversion, near the end, append custom string:
131-
echo "-Hyperion-0.1.0-$(git rev-parse --short HEAD 2>/dev/null || echo 'release')"
131+
echo "-Hyperion-0.1.1-$(git rev-parse --short HEAD 2>/dev/null || echo 'release')"
132132
```
133133

134-
This produces: `6.19.6-Hyperion-0.1.0-a3f9c21`
134+
This produces: `6.19.6-Hyperion-0.1.1-a3f9c21`
135135

136136
---
137137

@@ -168,23 +168,23 @@ After building and booting:
168168
```bash
169169
# Release string (uname -r)
170170
uname -r
171-
# → 6.19.6-Hyperion-0.1.0
171+
# → 6.19.6-Hyperion-0.1.1
172172
173173
# Full version string (uname -v)
174174
uname -v
175-
# → #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.0 (Soumalya Das) 2026
175+
# → #1 SMP PREEMPT Linux 6.19.6-Hyperion-0.1.1 (Soumalya Das) 2026
176176
177177
# All info
178178
uname -a
179-
# → Linux hyperion 6.19.6-Hyperion-0.1.0 #1 SMP PREEMPT ... (Soumalya Das) 2026 x86_64 GNU/Linux
179+
# → Linux hyperion 6.19.6-Hyperion-0.1.1 #1 SMP PREEMPT ... (Soumalya Das) 2026 x86_64 GNU/Linux
180180
181181
# /proc interface
182182
cat /proc/version
183-
# → Linux version 6.19.6-Hyperion-0.1.0 (Soumalya Das) (gcc version 13.2.0 ...) #1 SMP PREEMPT 2026
183+
# → Linux version 6.19.6-Hyperion-0.1.1 (Soumalya Das) (gcc version 13.2.0 ...) #1 SMP PREEMPT 2026
184184
185185
# Kernel banner in dmesg
186186
dmesg | head -3
187-
# → [ 0.000000] Linux version 6.19.6-Hyperion-0.1.0 (Soumalya Das) ...
187+
# → [ 0.000000] Linux version 6.19.6-Hyperion-0.1.1 (Soumalya Das) ...
188188
```
189189

190190
---

docs/troubleshooting.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,29 +61,29 @@ ls /boot/loader/entries/
6161

6262
**Symptom:**
6363
```
64-
Error! Bad return status for module build on kernel: 6.19.6-Hyperion-0.1.0
64+
Error! Bad return status for module build on kernel: 6.19.6-Hyperion-0.1.1
6565
```
6666

6767
**Step 1: Check if headers exist**
6868
```bash
69-
ls /usr/src/linux-headers-6.19.6-Hyperion-0.1.0/
69+
ls /usr/src/linux-headers-6.19.6-Hyperion-0.1.1/
7070
# If empty or missing → run install-headers.sh
7171
sudo bash /path/to/hyperion/scripts/install-headers.sh
7272
```
7373

7474
**Step 2: Verify build symlink**
7575
```bash
76-
readlink /lib/modules/6.19.6-Hyperion-0.1.0/build
77-
# Must point to /usr/src/linux-headers-6.19.6-Hyperion-0.1.0
76+
readlink /lib/modules/6.19.6-Hyperion-0.1.1/build
77+
# Must point to /usr/src/linux-headers-6.19.6-Hyperion-0.1.1
7878

7979
# Fix if wrong:
80-
sudo ln -sfn /usr/src/linux-headers-6.19.6-Hyperion-0.1.0 \
81-
/lib/modules/6.19.6-Hyperion-0.1.0/build
80+
sudo ln -sfn /usr/src/linux-headers-6.19.6-Hyperion-0.1.1 \
81+
/lib/modules/6.19.6-Hyperion-0.1.1/build
8282
```
8383

8484
**Step 3: Try building DKMS module manually**
8585
```bash
86-
sudo dkms build -m nvidia -v 550.54.14 -k 6.19.6-Hyperion-0.1.0 --verbose
86+
sudo dkms build -m nvidia -v 550.54.14 -k 6.19.6-Hyperion-0.1.1 --verbose
8787
```
8888

8989
**Step 4: Check module build log**
@@ -98,7 +98,7 @@ cat /var/lib/dkms/<module>/<version>/build/make.log
9898
**Symptom:**
9999
```
100100
insmod: ERROR: could not insert module foo.ko: Invalid module format
101-
dmesg: foo: version magic '6.19.6 ...' should be '6.19.6-Hyperion-0.1.0 ...'
101+
dmesg: foo: version magic '6.19.6 ...' should be '6.19.6-Hyperion-0.1.1 ...'
102102
```
103103

104104
**Cause:** Module was built for a different kernel version

0 commit comments

Comments
 (0)