add stable kernel

This commit is contained in:
Travis Staton 2025-01-08 11:54:30 -05:00
parent 6b63ee9828
commit 25b46a0be0
No known key found for this signature in database
GPG key ID: E883E53CDAC16260
3 changed files with 24 additions and 0 deletions

18
flake.lock generated
View file

@ -60,6 +60,7 @@
"rpi-firmware-src": "rpi-firmware-src",
"rpi-linux-6_10_12-src": "rpi-linux-6_10_12-src",
"rpi-linux-6_6_67-src": "rpi-linux-6_6_67-src",
"rpi-linux-stable-src": "rpi-linux-stable-src",
"rpicam-apps-src": "rpicam-apps-src",
"u-boot-src": "u-boot-src"
}
@ -149,6 +150,23 @@
"type": "github"
}
},
"rpi-linux-stable-src": {
"flake": false,
"locked": {
"lastModified": 1728403745,
"narHash": "sha256-phCxkuO+jUGZkfzSrBq6yErQeO2Td+inIGHxctXbD5U=",
"owner": "raspberrypi",
"repo": "linux",
"rev": "5aeecea9f4a45248bcf564dec924965e066a7bfd",
"type": "github"
},
"original": {
"owner": "raspberrypi",
"ref": "stable_20241008",
"repo": "linux",
"type": "github"
}
},
"rpicam-apps-src": {
"flake": false,
"locked": {

View file

@ -7,6 +7,10 @@
flake = false;
url = "https://ftp.denx.de/pub/u-boot/u-boot-2024.07.tar.bz2";
};
rpi-linux-stable-src = {
flake = false;
url = "github:raspberrypi/linux/stable_20241008";
};
rpi-linux-6_6_67-src = {
flake = false;
url = "github:raspberrypi/linux/rpi-6.6.y";

View file

@ -1,4 +1,5 @@
{ u-boot-src
, rpi-linux-stable-src
, rpi-linux-6_6_67-src
, rpi-linux-6_10_12-src
, rpi-firmware-src
@ -9,6 +10,7 @@
final: prev:
let
versions = {
v6_6_51.src = rpi-linux-stable-src;
v6_6_67.src = rpi-linux-6_6_67-src;
v6_10_12 = {
src = rpi-linux-6_10_12-src;