about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-riscv.nix
blob: b2eb0a69a8ec38dee2b868c94cc9ce6d7465818a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPackages, hostPlatform, fetchFromGitHub, perl, buildLinux, libelf, utillinux, ... } @ args:

buildLinux (args // rec {
  version = "4.16-rc1";
  modDirVersion = "4.16.0-rc1";
  extraMeta.branch = "4.16";

  src = fetchFromGitHub {
    owner = "riscv";
    repo ="riscv-linux";
    rev = "a31991a9c6ce2c86fd676cf458a0ec10edc20d37";
    sha256 = "0n97wfbi3pnp5c70xfj7s0fk8zjjkjz6ldxh7n54kbf64l4in01f";
  };

  # Should the testing kernels ever be built on Hydra?
  extraMeta.hydraPlatforms = [];

} // (args.argsOverride or {}))