about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/generic.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-08-08 18:46:57 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-08-08 18:46:57 +0000
commiteddc9d6ab58c3645a247c4122889f74be27c4391 (patch)
tree7a19faa5140cdb4b615ecec5dd37cd95c9b58246 /pkgs/os-specific/linux/kernel/generic.nix
parentf2de89336b95998d2e153f42ff01d8ef42cf81ae (diff)
downloadnixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.tar
nixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.tar.gz
nixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.tar.bz2
nixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.tar.lz
nixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.tar.xz
nixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.tar.zst
nixlib-eddc9d6ab58c3645a247c4122889f74be27c4391.zip
Fixing the nanonote kernel expressions so they work.
In fact only 2.6.34 boots fine, while 2.6.35 needs a fetchsvn new revision,
waiting for an upstream patch.

svn path=/nixpkgs/branches/stdenv-updates/; revision=23039
Diffstat (limited to 'pkgs/os-specific/linux/kernel/generic.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/generic.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/generic.nix b/pkgs/os-specific/linux/kernel/generic.nix
index fb59fa0b7d51..efc2408d3719 100644
--- a/pkgs/os-specific/linux/kernel/generic.nix
+++ b/pkgs/os-specific/linux/kernel/generic.nix
@@ -37,6 +37,7 @@
 , preConfigure ? ""
 , extraMeta ? {}
 , ubootChooser ? null
+, postInstall ? ""
 , ...
 }:
 
@@ -70,7 +71,7 @@ stdenv.mkDerivation {
 
   generateConfig = ./generate-config.pl;
 
-  inherit preConfigure src module_init_tools localVersion;
+  inherit preConfigure src module_init_tools localVersion postInstall;
 
   patches = map (p: p.patch) kernelPatches;