nixpkgs/pkgs/os-specific/linux/kernel
Eelco Dolstra 45a2c87402 * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead of
fetchurl {
      url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zapping-0.9.6.tar.bz2;
      md5 = "8306775c6a11de4d72345b5eee970ea6";
    };

  you can write

    fetchurl {
      url = mirror://sourceforge/zapping/zapping-0.9.6.tar.bz2;
      md5 = "8306775c6a11de4d72345b5eee970ea6";
    };

  which causes fetchurl to try the SourceForge mirrors listed in the
  `sourceforge' attribute in build-support/fetchurl/mirrors.nix.
  (They're currently tried in sequence, and the lists of mirrors are
  not configurable yet.)

  The syntax for mirror URLs is mirror://site/path/to/file, where
  `site' is currently one of `sourceforge', `gnu' (mirrors of
  ftp://ftp.gnu.org/pub/gnu) and `kernel' (mirrors of
  http://www.all.kernel.org/pub/).

svn path=/nixpkgs/trunk/; revision=9197
2007-08-27 12:44:01 +00:00
..
2.6.20-paravirt-nvidia.patch forgot paravirt nvidia patch for linux kernel 2007-05-28 14:17:28 +00:00
2.6.22-paravirt-nvidia.patch * Doh! 2007-07-21 02:07:09 +00:00
builder.sh * Suppress localversion from kernel patches, allow the user to set 2007-05-15 12:53:03 +00:00
config-2.6.20-i686-smp
config-2.6.20-uml * Updated User-Mode Linux. It's now unified with the regular (NixOS) 2007-03-27 11:11:58 +00:00
config-2.6.20-x86_64-smp * x86_64 config. 2007-02-08 14:53:53 +00:00
config-2.6.21-i686-smp * CONFIG_FB_TILEBLITTING has to be off, otherwise CONFIG_FB_SPLASH 2007-06-04 14:05:22 +00:00
config-2.6.21-uml * Linux 2.6.21.3. 2007-05-31 13:32:22 +00:00
config-2.6.21-x86_64-smp * CONFIG_FB_TILEBLITTING has to be off, otherwise CONFIG_FB_SPLASH 2007-06-04 14:05:22 +00:00
config-2.6.22-i686-smp * Linux 2.6.22.1. 2007-07-20 15:25:45 +00:00
config-2.6.22-uml * Linux 2.6.22.1. 2007-07-20 15:25:45 +00:00
config-2.6.22-x86_64-smp * Kernel config for x86_64. 2007-07-21 02:27:49 +00:00
linux-2.6.20.3-ext3cow.patch Added e3cfsprogs and ext3cow-tools. Ext3cow is a stand-alone disk file system, (e.g. ReiserFS, HFS, NTFS) based on ext3, that supports versioning through copy-on-write and a time-shifting interface. 2007-07-20 15:50:54 +00:00
linux-2.6.20.nix * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead of 2007-08-27 12:44:01 +00:00
linux-2.6.21.nix * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead of 2007-08-27 12:44:01 +00:00
linux-2.6.22.nix * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead of 2007-08-27 12:44:01 +00:00
README * Some notes on updating the NixOS kernel. 2007-07-21 02:23:34 +00:00

*** Updating the kernel configs ***

- Copy the old Nix expression (e.g. linux-2.6.21.nix) to the new one
  (e.g. linux-2.6.22.nix) and update it.
- Add an new attribute to all-packages.nix.

For each platform (i686, x86-64, uml):

- Make an svn copy from the old config (e.g. config-2.6.21-i686-smp)
  to the new one (e.g. (e.g. config-2.6.22-i686-smp).
- Unpack the new kernel.
- Copy the config file for this platform
  (e.g. config-2.6.22-i686-smp) to .config.
- Run `make oldconfig', answer all questions.  (For the uml
  configuration, add "ARCH=um SHELL=bash".)
- Make sure that CONFIG_FB_TILEBLITTING is NOT SET (otherwise fbsplash
  won't work).  If it is, investigate why (there's probably another
  option that forces it to be on) and fix it.
- Copy .config to the new config file (e.g. config-2.6.21-i686-smp).