Skip to content

Commit

Permalink
Add linux 6.5 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
asonix authored Oct 15, 2023
1 parent b960d6f commit ace79db
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
package:
- kernel_linux_6_1_rockchip
- kernel_linux_6_4_rockchip
- kernel_linux_6_5_rockchip
- kernel_linux_6_4_pinetab
- kernel_linux_6_5_pinetab
- uBootPineTab2
- uBootQuartz64A
- uBootQuartz64B
Expand Down
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@
packages = (images system) // {
kernel_linux_6_1_rockchip = (kernel system).linux_6_1_rockchip.kernel;
kernel_linux_6_4_rockchip = (kernel system).linux_6_4_rockchip.kernel;
kernel_linux_6_5_rockchip = (kernel system).linux_6_5_rockchip.kernel;
kernel_linux_6_4_pinetab = (kernel system).linux_6_4_pinetab.kernel;
kernel_linux_6_5_pinetab = (kernel system).linux_6_5_pinetab.kernel;

uBootQuartz64A = (uBoot system).uBootQuartz64A;
uBootQuartz64B = (uBoot system).uBootQuartz64B;
Expand Down
17 changes: 17 additions & 0 deletions pkgs/linux-rockchip.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ with pkgs.linuxKernel;
linux_6_4 = pkgs.linuxPackages_6_4;
linux_6_4_rockchip = packagesFor (kernels.linux_6_4.override { structuredExtraConfig = kernelConfig; });

linux_6_5 = pkgs.linuxPackages_6_5;
linux_6_5_rockchip = packagesFor (kernels.linux_6_5.override { structuredExtraConfig = kernelConfig; });

linux_6_4_pinetab = packagesFor (kernels.linux_6_4.override {
argsOverride = {
src = pkgs.fetchFromGitHub {
Expand All @@ -59,5 +62,19 @@ with pkgs.linuxKernel;
};
structuredExtraConfig = kernelConfig;
});

linux_6_5_pinetab = packagesFor (kernels.linux_6_5.override {
argsOverride = {
src = pkgs.fetchFromGitHub {
owner = "dreemurrs-embedded";
repo = "linux-pinetab2";
rev = "10fc35d192953339cc6d28b9fa145f9716037c16";
sha256 = "977oXIFomlxoOYoVX4G+G5eW19rNwonMmfkLnNr+FUU=";
};
version = "6.5.5-danctnix1";
modDirVersion = "6.5.5-danctnix1";
};
structuredExtraConfig = kernelConfig;
});
}

0 comments on commit ace79db

Please sign in to comment.