Skip to content

Commit

Permalink
Linux 6.12 LTS
Browse files Browse the repository at this point in the history
Signed-off-by: sbwml <[email protected]>
  • Loading branch information
sbwml committed Nov 23, 2024
1 parent 096bc3b commit 3bbc895
Show file tree
Hide file tree
Showing 24 changed files with 1,521 additions and 1,625 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
sudo mount -t proc /proc rootfs/proc
- name: Install LLVM
uses: sbwml/actions@install-llvm
uses: sbwml/actions@install-llvm-19

- name: Build Linux Kernel
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux Kernel 6.6 LTS
name: Linux Kernel 6.12 LTS

on:
schedule:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
sudo mount -t proc /proc rootfs/proc
- name: Install LLVM
uses: sbwml/actions@install-llvm
uses: sbwml/actions@install-llvm-19

- name: Build Linux Kernel
run: |
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<div align="center">
<img src="https://github-production-user-asset-6210df.s3.amazonaws.com/16485166/263130623-3f9e5945-cc0c-44b9-b6fc-f9de2b8b9ce6.png" height="150.0px"/>
<h1 align="center">Linux 6.6 LTS Kernel for CentOS 7 / Red Hat 7</h1>
<h1 align="center">Linux 6.12 LTS Kernel for CentOS 7 / Red Hat 7</h1>
</div>

### Features:
- **Google's BBRv3 TCP congestion control.**
- **Hysteria's TCP Brutal congestion control.**
- **Linux Random Number Generator (LRNG v52).**
- **Backport Linux 6.8 Network Optimizations.**
- **Linux Random Number Generator (LRNG v57).**
- **Enable eBPF support.**
- **Enable PREEMPT_RT**
- **Enable CONFIG_LTO_CLANG_FULL**

### Install:
Expand Down
2 changes: 1 addition & 1 deletion build_kernel.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Check Linux Kernel Version
LATEST_VERSION=$(curl -s https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc | awk '{print $2}' | grep -E ^linux-6.6 | grep tar.xz | sed 's/linux-//g;s/.tar.xz//g' | tail -n 1)
LATEST_VERSION=$(curl -s https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc | awk '{print $2}' | grep -E ^linux-6.12 | grep tar.xz | sed 's/linux-//g;s/.tar.xz//g' | tail -n 1)
if [ "$1" = "workflow_dispatch" ]; then
NEW_VERSION=y
echo $LATEST_VERSION > /VERSION
Expand Down
Loading

0 comments on commit 3bbc895

Please sign in to comment.