2018-02-19 17:14:22 +00:00
|
|
|
{ stdenv, buildPackages, hostPlatform, fetchFromGitHub, perl, buildLinux, libelf, utillinux, ... } @ args:
|
|
|
|
|
|
|
|
buildLinux (args // rec {
|
2018-03-24 05:17:36 +00:00
|
|
|
version = "4.16-rc6";
|
|
|
|
modDirVersion = "4.16.0-rc6";
|
2018-02-19 17:14:22 +00:00
|
|
|
extraMeta.branch = "4.16";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-02-23 10:53:31 +00:00
|
|
|
owner = "shlevy";
|
2018-02-19 17:14:22 +00:00
|
|
|
repo ="riscv-linux";
|
2018-03-24 05:17:36 +00:00
|
|
|
rev = "a54f259c2adce68e3bd7600be8989bf1ddf9ea3a";
|
|
|
|
sha256 = "140w6mj4hm1vf4zsmcr2w5cghcaalbvw5d4m9z57dmq1z5plsl4q";
|
2018-02-19 17:14:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
|
|
|
} // (args.argsOverride or {}))
|