summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-rpi-3.6.nix
blob: 0dc6378fff387458c40959c86c784eafc9235f4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
args @ {
  stdenv, fetchgit, extraConfig ? "" , perl, mktemp, module_init_tools, ...
}:

let
  configWithPlatform = kernelPlatform :
    ''
      ${if kernelPlatform ? kernelExtraConfig then kernelPlatform.kernelExtraConfig else ""}
      ${extraConfig}
    '';
in

import ./generic.nix (

  rec {
    version = "3.6.y";
    testing = false;

    preConfigure = ''
      substituteInPlace scripts/depmod.sh --replace '-b "$INSTALL_MOD_PATH"' ""
    '';

    src = fetchgit {
      url = https://github.com/raspberrypi/linux;
      rev = "6e1f8bce970043a658d15f9350eb85152fd5fc4e";
      sha256 = "";
    };

    config = configWithPlatform stdenv.platform;
    configCross = configWithPlatform stdenv.cross.platform;

    features.iwlwifi = true;
    #features.efiBootStub = true;
    #features.needsCifsUtils = true;
    #features.canDisableNetfilterConntrackHelpers = true;
    #features.netfilterRPFilter = true;

    fetchurl = null;
  }

  // removeAttrs args ["extraConfig"]
)