tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: Remove 4.13.x
Tim Steinbach
8 years ago
e1410a67
18438877
-34
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-4.13.nix
top-level
all-packages.nix
-17
pkgs/os-specific/linux/kernel/linux-4.13.nix
···
1
-
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
2
-
3
-
buildLinux (args // rec {
4
-
version = "4.13.16";
5
-
extraMeta.branch = "4.13";
6
-
7
-
# TODO: perhaps try being more concrete (ideally CVE numbers).
8
-
extraMeta.knownVulnerabilities = [
9
-
"ALSA: usb-audio: Fix potential out-of-bound access at parsing SU"
10
-
"eCryptfs: use after free in ecryptfs_release_messaging()"
11
-
];
12
-
13
-
src = fetchurl {
14
-
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
15
-
sha256 = "0cf7prqzl1ajbgl98w0symdyn0k5wl5xaf1l5ldgy6l083yg69dh";
16
-
};
17
-
} // (args.argsOverride or {}))
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-17
pkgs/top-level/all-packages.nix
···
13133
];
13134
};
13135
13136
-
linux_4_13 = callPackage ../os-specific/linux/kernel/linux-4.13.nix {
13137
-
kernelPatches =
13138
-
[ kernelPatches.bridge_stp_helper
13139
-
kernelPatches.p9_fixes
13140
-
# See pkgs/os-specific/linux/kernel/cpu-cgroup-v2-patches/README.md
13141
-
# when adding a new linux version
13142
-
kernelPatches.cpu-cgroup-v2."4.11"
13143
-
kernelPatches.modinst_arg_list_too_long
13144
-
]
13145
-
++ lib.optionals ((platform.kernelArch or null) == "mips")
13146
-
[ kernelPatches.mips_fpureg_emu
13147
-
kernelPatches.mips_fpu_sigill
13148
-
kernelPatches.mips_ext3_n32
13149
-
];
13150
-
};
13151
-
13152
linux_4_14 = callPackage ../os-specific/linux/kernel/linux-4.14.nix {
13153
kernelPatches =
13154
[ kernelPatches.bridge_stp_helper
···
13380
linuxPackages_rpi = linuxPackagesFor pkgs.linux_rpi;
13381
linuxPackages_4_4 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_4);
13382
linuxPackages_4_9 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_9);
13383
-
linuxPackages_4_13 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_13);
13384
linuxPackages_4_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_14);
13385
linuxPackages_4_15 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_15);
13386
# Don't forget to update linuxPackages_latest!
···
13133
];
13134
};
13135
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
13136
linux_4_14 = callPackage ../os-specific/linux/kernel/linux-4.14.nix {
13137
kernelPatches =
13138
[ kernelPatches.bridge_stp_helper
···
13364
linuxPackages_rpi = linuxPackagesFor pkgs.linux_rpi;
13365
linuxPackages_4_4 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_4);
13366
linuxPackages_4_9 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_9);
0
13367
linuxPackages_4_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_14);
13368
linuxPackages_4_15 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_15);
13369
# Don't forget to update linuxPackages_latest!