a7d6642cf3
- Sound SOC support was refactored in torvalds/linux@43df5242af - GMA3600 is part of GMA500 as of torvalds/linux@26499e0518
21 lines
646 B
Nix
21 lines
646 B
Nix
{ lib, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
|
|
|
with lib;
|
|
|
|
buildLinux (args // rec {
|
|
version = "5.12-rc4";
|
|
extraMeta.branch = "5.12";
|
|
|
|
# modDirVersion needs to be x.y.z, will always add .0
|
|
modDirVersion = if (modDirVersionArg == null) then builtins.replaceStrings ["-"] [".0-"] version else modDirVersionArg;
|
|
|
|
src = fetchurl {
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
|
sha256 = "06i6xnfbyn522pj9zksx6ka01yxwv8dsrb2z517grv682sp8j70k";
|
|
};
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
} // (args.argsOverride or {}))
|