lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

linux_6_17: init at 6.17

K900 51126c89 2a7c84e1

+17 -1
+5
pkgs/os-specific/linux/kernel/kernels-org.json
··· 38 38 "version": "6.16.9", 39 39 "hash": "sha256:13g59jvc6kvp8dzl6ysmzrpq4nh9xvy5va5avrsn6iq5ryiwij3s", 40 40 "lts": false 41 + }, 42 + "6.17": { 43 + "version": "6.17", 44 + "hash": "sha256:19spyyknps9dzb6mz5sk685a505hzqi144lqc0rdi6f9l5k72q4v", 45 + "lts": false 41 46 } 42 47 }
+2
pkgs/top-level/aliases.nix
··· 1418 1418 linuxPackages_6_14 = linuxKernel.packages.linux_6_14; 1419 1419 linuxPackages_6_15 = linuxKernel.packages.linux_6_15; 1420 1420 linuxPackages_6_16 = linuxKernel.packages.linux_6_16; 1421 + linuxPackages_6_17 = linuxKernel.packages.linux_6_17; 1421 1422 linuxPackages_ham = linuxKernel.packages.linux_ham; 1422 1423 linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1; 1423 1424 linuxPackages_rpi02w = linuxKernel.packages.linux_rpi3; ··· 1443 1444 linux_6_14 = linuxKernel.kernels.linux_6_14; 1444 1445 linux_6_15 = linuxKernel.kernels.linux_6_15; 1445 1446 linux_6_16 = linuxKernel.kernels.linux_6_16; 1447 + linux_6_17 = linuxKernel.kernels.linux_6_17; 1446 1448 linux_ham = linuxKernel.kernels.linux_ham; 1447 1449 linux_rpi0 = linuxKernel.kernels.linux_rpi1; 1448 1450 linux_rpi02w = linuxKernel.kernels.linux_rpi3;
+10 -1
pkgs/top-level/linux-kernels.nix
··· 218 218 ]; 219 219 }; 220 220 221 + linux_6_17 = callPackage ../os-specific/linux/kernel/mainline.nix { 222 + branch = "6.17"; 223 + kernelPatches = [ 224 + kernelPatches.bridge_stp_helper 225 + kernelPatches.request_key_helper 226 + ]; 227 + }; 228 + 221 229 linux_testing = 222 230 let 223 231 testing = callPackage ../os-specific/linux/kernel/mainline.nix { ··· 737 745 linux_6_6 = recurseIntoAttrs (packagesFor kernels.linux_6_6); 738 746 linux_6_12 = recurseIntoAttrs (packagesFor kernels.linux_6_12); 739 747 linux_6_16 = recurseIntoAttrs (packagesFor kernels.linux_6_16); 748 + linux_6_17 = recurseIntoAttrs (packagesFor kernels.linux_6_17); 740 749 } 741 750 // lib.optionalAttrs config.allowAliases { 742 751 linux_4_19 = throw "linux 4.19 was removed because it will reach its end of life within 24.11"; # Added 2024-09-21 ··· 809 818 packageAliases = { 810 819 linux_default = packages.linux_6_12; 811 820 # Update this when adding the newest kernel major version! 812 - linux_latest = packages.linux_6_16; 821 + linux_latest = packages.linux_6_17; 813 822 linux_rt_default = packages.linux_rt_5_15; 814 823 linux_rt_latest = packages.linux_rt_6_6; 815 824 }