Skip to content

Commit

Permalink
feat: update kernel to 6.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GiyoMoon committed Sep 17, 2024
1 parent 9d34953 commit b79126f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center"><img src="assets/nixos.svg" width=200 /></div>
<h1 align="center">NixOS Turing RK1</h1>

This flake builds a bootable `nixosSystem` for the [Turing RK1](https://turingpi.com/product/turing-rk1/). It uses u-boot from nixpkgs and the mainline kernel (`6.11.0-rc6`) from upstream. It includes a patch that enables fan curve control (Thanks [@soxrok2212](https://github.com/soxrok2212)).
This flake builds a bootable `nixosSystem` for the [Turing RK1](https://turingpi.com/product/turing-rk1/). It uses u-boot from nixpkgs and the mainline kernel (`6.11.0`) from upstream. It includes a patch that enables fan curve control (Thanks [@soxrok2212](https://github.com/soxrok2212)).

## Building the image
As of now, you have to be on an `aarch64-linux` system to build the flake. Adding support for cross-compilation on `x86_64-linux` is planned.
Expand Down
16 changes: 8 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
url = "github:NixOS/nixpkgs/nixos-unstable";
};

# v6.11-rc6
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tag/?h=v6.11-rc6
# v6.11
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tag/?h=v6.11
kernel = {
url = "git+https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git?rev=8e7c1c539395e34648d859c20b0f9478eb5901cc";
url = "git+https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git?rev=fa7818b3a6dd56c7956f515d287ed9f80c7bf59a";
flake = false;
};
};
Expand Down
2 changes: 1 addition & 1 deletion packages/kernel/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in
linuxManualConfig {
inherit src;

version = "6.11.0-rc6";
version = "6.11.0";

configfile = stdenv.mkDerivation {
inherit src;
Expand Down

0 comments on commit b79126f

Please sign in to comment.