Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit 628e512

Browse files
authored
Merge pull request #107 from nix-community/stable-kernel
Add kernel tracking stable release
2 parents 6b63ee9 + 85faa0f commit 628e512

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

flake.lock

Lines changed: 22 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
flake = false;
88
url = "https://ftp.denx.de/pub/u-boot/u-boot-2024.07.tar.bz2";
99
};
10+
rpi-linux-stable-src = {
11+
flake = false;
12+
url = "github:raspberrypi/linux/stable_20241008";
13+
};
1014
rpi-linux-6_6_67-src = {
1115
flake = false;
1216
url = "github:raspberrypi/linux/rpi-6.6.y";
@@ -17,7 +21,7 @@
1721
};
1822
rpi-firmware-src = {
1923
flake = false;
20-
url = "github:raspberrypi/firmware/1.20241001";
24+
url = "github:raspberrypi/firmware/1.20241008";
2125
};
2226
rpi-firmware-nonfree-src = {
2327
flake = false;

overlays/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{ u-boot-src
2+
, rpi-linux-stable-src
23
, rpi-linux-6_6_67-src
34
, rpi-linux-6_10_12-src
45
, rpi-firmware-src
@@ -9,6 +10,7 @@
910
final: prev:
1011
let
1112
versions = {
13+
v6_6_51.src = rpi-linux-stable-src;
1214
v6_6_67.src = rpi-linux-6_6_67-src;
1315
v6_10_12 = {
1416
src = rpi-linux-6_10_12-src;

rpi/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ in
1414
options = with lib; {
1515
raspberry-pi-nix = {
1616
kernel-version = mkOption {
17-
default = "v6_6_67";
17+
default = "v6_6_51";
1818
type = types.str;
1919
description = "Kernel version to build.";
2020
};

0 commit comments

Comments
 (0)