From a7878ba0a7d1346ff93db78ece12588aa868b863 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 22 Jan 2007 13:34:08 +0000 Subject: [PATCH] * Doh. svn path=/nixpkgs/trunk/; revision=7741 --- pkgs/os-specific/linux/kernel/linux-2.6.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.19.nix b/pkgs/os-specific/linux/kernel/linux-2.6.19.nix index d7c8ae4fc2c..ff8aa40db91 100644 --- a/pkgs/os-specific/linux/kernel/linux-2.6.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-2.6.19.nix @@ -21,8 +21,8 @@ stdenv.mkDerivation { patches = map (p: p.patch) kernelPatches; config = - if stdenv.system == "i686-linux" then ./config-2.6.19.1-i686-smp else - if stdenv.system == "x86_64-linux" then ./config-2.6.19.1-x86_64-smp else + if stdenv.system == "i686-linux" then ./config-2.6.19.2-i686-smp else + if stdenv.system == "x86_64-linux" then ./config-2.6.19.2-x86_64-smp else abort "No kernel configuration for your platform!"; buildInputs = [perl mktemp];