Skip to content

Commit

Permalink
Update kernel to 6.13-rc2
Browse files Browse the repository at this point in the history
The ISO should be reproducible and have the following SHA256 hash:
cc37572f168e1a94e2e04d88d156b29f07acc411d32bca210b4f594d3b28bff0
  • Loading branch information
kuruczgy committed Dec 11, 2024
1 parent ede0404 commit c073767
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
5 changes: 5 additions & 0 deletions modules/x1e80100.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
boot.kernelParams = [
"pd_ignore_unused"
"clk_ignore_unused"

# Needed since 4c3d9c134892c4158867075c840b81a5ed28af1f ("arm64: dts: qcom:
# x1e80100: Add debug uart to Lenovo Yoga Slim 7x"), I guess systemd picks
# UART as the only console, and it does not output logs on the screen.
"console=tty1"
];

hardware.deviceTree.enable = true;
Expand Down
13 changes: 3 additions & 10 deletions packages/x1e80100-linux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ linuxPackagesFor (buildLinux {
src = fetchFromGitHub {
owner = "jhovold";
repo = "linux";
rev = "wip/x1e80100-6.12";
hash = "sha256-CUt4J7IFS14qD8GiZOuSeJmFdbWOmmyV/iJNcTUVN5g=";
rev = "wip/x1e80100-6.13-rc2";
hash = "sha256-sCapdt5lYw/zXIPIrJ5hECL9Xqviizerp9dmnx4BJpc=";
};
version = "6.12.0";
version = "6.13.0-rc2";
defconfig = "johan_defconfig";

structuredExtraConfig = with lib.kernel; {
Expand All @@ -16,13 +16,6 @@ linuxPackagesFor (buildLinux {
};

kernelPatches = [
{
name = "drm/panic: Select ZLIB_DEFLATE for DRM_PANIC_SCREEN_QR_CODE";
patch = fetchurl {
url = "https://lore.kernel.org/linux-kernel/[email protected]/raw";
hash = "sha256-qZTP9o0Pel9M1Y9f/31SZbOJxeM0j28P94EUXa83m+Q=";
};
}
{
name = "Add Bluetooth support for the Lenovo Yoga Slim 7x";
patch = fetchpatch {
Expand Down

0 comments on commit c073767

Please sign in to comment.