Skip to content

Commit f026712

Browse files
patch important metdata
1 parent 449a39c commit f026712

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

โ€ŽCONTRIBUTING.mdโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ By participating in this project you agree to abide by the
2525
## Development Setup
2626

2727
```bash
28-
git clone https://github.com/soumalyadev/hyperion-kernel.git
29-
cd hyperion-kernel
28+
git clone https://github.com/pro-grammer-SD/hyperion.git
29+
cd hyperion
3030
git checkout -b feature/my-improvement
3131
```
3232

โ€ŽREADME.mdโ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
**Author:** Soumalya Das  |  **License:** MIT  |  **Base:** Linux 6.19.6 LTS  |  **Year:** 2026
1515

16-
[![Build Status](https://img.shields.io/github/actions/workflow/status/soumalyadev/hyperion-kernel/build.yml?style=flat-square&label=Kernel%20Build)](https://github.com/soumalyadev/hyperion-kernel/actions)
16+
[![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)
1717
[![Kernel Version](https://img.shields.io/badge/kernel-6.19.6--Hyperion--0.1.0-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)
@@ -167,8 +167,8 @@ Hyperion treats module compatibility as a **first-class feature**, not an aftert
167167

168168
```bash
169169
# Clone the repository
170-
git clone https://github.com/soumalyadev/hyperion-kernel.git
171-
cd hyperion-kernel
170+
git clone https://github.com/pro-grammer-SD/hyperion.git
171+
cd hyperion
172172

173173
# Build and install in one shot (interactive config review)
174174
sudo bash scripts/build-kernel.sh --interactive
@@ -210,7 +210,7 @@ tar -xf linux-6.19.6.tar.xz
210210
cd linux-6.19.6
211211

212212
# 2. Copy Hyperion config
213-
cp /path/to/hyperion-kernel/hyperion.config .config
213+
cp /path/to/hyperion/hyperion.config .config
214214

215215
# 3. Resolve any new config symbols for your exact kernel version
216216
make olddefconfig
@@ -228,7 +228,7 @@ make modules -j$(nproc)
228228
sudo make modules_install
229229

230230
# 8. Install headers (DKMS requirement)
231-
sudo bash /path/to/hyperion-kernel/scripts/install-headers.sh
231+
sudo bash /path/to/hyperion/scripts/install-headers.sh
232232

233233
# 9. Install kernel
234234
sudo make install

โ€Ždocs/build.mdโ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ cd linux-6.19.6
6464

6565
```bash
6666
# Copy config into the kernel source tree
67-
cp /path/to/hyperion-kernel/hyperion.config .config
67+
cp /path/to/hyperion/hyperion.config .config
6868

6969
# Resolve any new symbols introduced since config was generated
7070
make olddefconfig
@@ -79,7 +79,7 @@ make menuconfig
7979

8080
```bash
8181
# Apply all Hyperion patches in order
82-
for patch in /path/to/hyperion-kernel/patches/*.patch; do
82+
for patch in /path/to/hyperion/patches/*.patch; do
8383
echo "Applying: $patch"
8484
git apply "$patch" || patch -p1 < "$patch"
8585
done
@@ -116,7 +116,7 @@ make modules -j$(nproc)
116116
sudo make modules_install
117117

118118
# Install kernel headers (required for DKMS)
119-
sudo bash /path/to/hyperion-kernel/scripts/install-headers.sh
119+
sudo bash /path/to/hyperion/scripts/install-headers.sh
120120

121121
# Install the kernel image
122122
sudo make install

โ€Ždocs/installation.mdโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This installs `.ko` files to `/lib/modules/6.19.6-Hyperion-0.1.0/`.
1818
### 2. Install Headers
1919

2020
```bash
21-
sudo bash /path/to/hyperion-kernel/scripts/install-headers.sh
21+
sudo bash /path/to/hyperion/scripts/install-headers.sh
2222
```
2323

2424
This:

โ€Ždocs/troubleshooting.mdโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Error! Bad return status for module build on kernel: 6.19.6-Hyperion-0.1.0
6868
```bash
6969
ls /usr/src/linux-headers-6.19.6-Hyperion-0.1.0/
7070
# If empty or missing โ†’ run install-headers.sh
71-
sudo bash /path/to/hyperion-kernel/scripts/install-headers.sh
71+
sudo bash /path/to/hyperion/scripts/install-headers.sh
7272
```
7373

7474
**Step 2: Verify build symlink**

โ€Žpatches/README.mdโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Long description of the change.
1717
Tested-on: hardware description
1818
Reference: URL to upstream discussion if applicable
1919
20-
Signed-off-by: Soumalya Das <soumalyadev@example.com>
20+
Signed-off-by: Soumalya Das <geniussantu1983@gmail.com>
2121
```
2222

2323
## Applying Patches

0 commit comments

Comments
ย (0)