2011-03-21 15:42:21 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2009-12-14 15:28:55 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
fbcondecorConfig =
|
|
|
|
''
|
|
|
|
FB_CON_DECOR y
|
|
|
|
|
|
|
|
# fbcondecor is picky about some other settings.
|
|
|
|
FB y
|
|
|
|
FB_TILEBLITTING n
|
|
|
|
FB_MATROX n
|
|
|
|
FB_S3 n
|
|
|
|
FB_VT8623 n
|
|
|
|
FB_ARK n
|
|
|
|
FB_CFB_FILLRECT y
|
|
|
|
FB_CFB_COPYAREA y
|
|
|
|
FB_CFB_IMAGEBLIT y
|
|
|
|
FB_VESA y
|
|
|
|
FRAMEBUFFER_CONSOLE y
|
|
|
|
'';
|
|
|
|
|
2011-03-21 15:53:22 +00:00
|
|
|
makeTuxonicePatch = { version, kernelVersion, sha256,
|
|
|
|
url ? "http://tuxonice.net/files/tuxonice-${version}-for-${kernelVersion}.patch.bz2" }:
|
|
|
|
{ name = "tuxonice-${kernelVersion}";
|
|
|
|
patch = stdenv.mkDerivation {
|
|
|
|
name = "tuxonice-${version}-for-${kernelVersion}.patch";
|
|
|
|
src = fetchurl {
|
|
|
|
inherit url sha256;
|
|
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
|
|
source $stdenv/setup
|
|
|
|
bunzip2 -c $src > $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-12-14 15:28:55 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
sec_perm_2_6_24 =
|
|
|
|
{ name = "sec_perm-2.6.24";
|
|
|
|
patch = ./sec_perm-2.6.24.patch;
|
|
|
|
features.secPermPatch = true;
|
|
|
|
};
|
|
|
|
|
2009-12-14 19:08:20 +00:00
|
|
|
fbcondecor_2_6_25 =
|
|
|
|
{ name = "fbcondecor-0.9.4-2.6.25-rc6";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-2.6.25-rc6.patch;
|
|
|
|
sha256 = "1wm94n7f0qyb8xvafip15r158z5pzw7zb7q8hrgddb092c6ibmq8";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
2009-12-14 15:28:55 +00:00
|
|
|
fbcondecor_2_6_27 =
|
|
|
|
{ name = "fbcondecor-0.9.4-2.6.27";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-2.6.27.patch;
|
|
|
|
sha256 = "170l9l5fvbgjrr4klqcwbgjg4kwvrrhjpmgbfpqj0scq0s4q4vk6";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
fbcondecor_2_6_28 =
|
|
|
|
{ name = "fbcondecor-0.9.5-2.6.28";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.5-2.6.28.patch;
|
|
|
|
sha256 = "105q2dwrwi863r7nhlrvljim37aqv67mjc3lgg529jzqgny3fjds";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
fbcondecor_2_6_29 =
|
|
|
|
{ name = "fbcondecor-0.9.6-2.6.29.2";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.6-2.6.29.2.patch;
|
|
|
|
sha256 = "1yppvji13sgnql62h4wmskzl9l198pp1pbixpbymji7mr4a0ylx1";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
fbcondecor_2_6_31 =
|
|
|
|
{ name = "fbcondecor-0.9.6-2.6.31.2";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.6-2.6.31.2.patch;
|
|
|
|
sha256 = "1avk0yn0y2qbpsxf31r6d14y4a1mand01r4k4i71yfxvpqcgxka9";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
2010-02-25 14:15:42 +00:00
|
|
|
fbcondecor_2_6_33 =
|
|
|
|
{ name = "fbcondecor-0.9.6-2.6.33-rc7";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.6-2.6.33-rc7.patch;
|
|
|
|
sha256 = "1v9lg3bgva0xry0s09drpw3n139s8hln8slayaf6i26vg4l4xdz6";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
2010-08-20 20:12:03 +00:00
|
|
|
fbcondecor_2_6_35 =
|
|
|
|
rec {
|
|
|
|
name = "fbcondecor-0.9.6-2.6.35-rc4";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = "http://dev.gentoo.org/~spock/projects/fbcondecor/archive/${name}.patch";
|
|
|
|
sha256 = "0dlks1arr3b3hlmw9k1a1swji2x655why61sa0aahm62faibsg1r";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
2011-03-19 20:44:45 +00:00
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
fbcondecor_2_6_37 =
|
|
|
|
rec {
|
|
|
|
name = "fbcondecor-0.9.6-2.6.37";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = "http://dev.gentoo.org/~spock/projects/fbcondecor/archive/${name}.patch";
|
|
|
|
sha256 = "1yap9q6mp15jhsysry4x17cpm5dj35g8l2d0p0vn1xq25x3jfkqk";
|
|
|
|
};
|
|
|
|
extraConfig = fbcondecorConfig;
|
2010-08-20 20:12:03 +00:00
|
|
|
features.fbConDecor = true;
|
|
|
|
};
|
|
|
|
|
2009-12-14 15:28:55 +00:00
|
|
|
# From http://patchwork.kernel.org/patch/19495/
|
|
|
|
ext4_softlockups_2_6_28 =
|
|
|
|
{ name = "ext4-softlockups-fix";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://patchwork.kernel.org/patch/19495/raw;
|
|
|
|
sha256 = "0vqcj9qs7jajlvmwm97z8cljr4vb277aqhsjqrakbxfdiwlhrzzf";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2010-01-03 17:57:08 +00:00
|
|
|
gcov_2_6_28 =
|
|
|
|
{ name = "gcov";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://buildfarm.st.ewi.tudelft.nl/~eelco/dist/linux-2.6.28-gcov.patch;
|
|
|
|
sha256 = "0ck9misa3pgh3vzyb7714ibf7ix7piyg5dvfa9r42v15scjqiyny";
|
|
|
|
};
|
|
|
|
extraConfig =
|
|
|
|
''
|
|
|
|
GCOV_PROFILE y
|
|
|
|
GCOV_ALL y
|
|
|
|
GCOV_PROC m
|
|
|
|
GCOV_HAMMER n
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-05-05 19:48:46 +00:00
|
|
|
tracehook_2_6_32 =
|
|
|
|
{ # From <http://people.redhat.com/roland/utrace/>.
|
|
|
|
name = "tracehook";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://people.redhat.com/roland/utrace/2.6.32/tracehook.patch;
|
|
|
|
sha256 = "1y009p8dyqknbjm8ryb495jqmvl372gfhswdn167xh2g1f24xqv8";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
utrace_2_6_32 =
|
|
|
|
{ # From <http://people.redhat.com/roland/utrace/>, depends on the
|
|
|
|
# `tracehook' patch above.
|
|
|
|
# See also <http://sourceware.org/systemtap/wiki/utrace>.
|
|
|
|
name = "utrace";
|
|
|
|
patch = fetchurl {
|
|
|
|
url = http://people.redhat.com/roland/utrace/2.6.32/utrace.patch;
|
|
|
|
sha256 = "1951mwc8jfiwrl0d2bb1zk9yrl7n7kadc00ymjsxrg2irda1b89r";
|
|
|
|
};
|
|
|
|
extraConfig =
|
|
|
|
'' UTRACE y
|
|
|
|
'';
|
|
|
|
};
|
2010-05-28 07:09:15 +00:00
|
|
|
|
|
|
|
aufs2_2_6_32 =
|
|
|
|
{ # From http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=tree;h=refs/heads/aufs2-32;hb=aufs2-32
|
|
|
|
# Note that this merely the patch needed to build AUFS2 as a
|
|
|
|
# standalone package.
|
|
|
|
name = "aufs2";
|
|
|
|
patch = ./aufs2.patch;
|
2010-05-28 09:29:39 +00:00
|
|
|
features.aufsBase = true;
|
|
|
|
};
|
|
|
|
|
2010-06-08 06:29:02 +00:00
|
|
|
aufs2_2_6_34 =
|
|
|
|
{ # From http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=tree;h=refs/heads/aufs2-34;hb=aufs2-34
|
|
|
|
# Note that this merely the patch needed to build AUFS2 as a
|
|
|
|
# standalone package.
|
|
|
|
name = "aufs2";
|
|
|
|
patch = ./aufs2-34.patch;
|
|
|
|
features.aufsBase = true;
|
|
|
|
};
|
|
|
|
|
2010-08-20 20:46:12 +00:00
|
|
|
aufs2_2_6_35 =
|
|
|
|
{ # From http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=tree;h=refs/heads/aufs2-35;hb=aufs2-35
|
|
|
|
# Note that this merely the patch needed to build AUFS2 as a
|
|
|
|
# standalone package.
|
|
|
|
name = "aufs2";
|
|
|
|
patch = ./aufs2-35.patch;
|
|
|
|
features.aufsBase = true;
|
|
|
|
};
|
|
|
|
|
Committing the aufs2.1 patch by Shea Levy. His comments:
* My motivation for this patch is that kernels < 2.6.36 contain an
e1000e that does not support the ethernet card that is part of the
chipset for the second-generation Core-i Intel CPUs, so in order
to have a more useful livecd I needed to get aufs working with a
newer kernel, and 2.6.37 is the latest kernel with an official
aufs release.
* All sources are downloaded with fetchgit. This is because the aufs
upstream doesn't provide release tarballs, they just add a tag to
their git tree for an official release.
* The make target for the aufs2.1 headers uses a Makefile in the
kernel build directory that requires that unifdef be in the
scripts/ subdirectory of the build directory. The way I've dealt
with this here is by adding "make $makeFlags -C scripts unifdef"
to the postBuild in the kernel builder. Since the builder is used
by all kernel versions, this will require rebuilding every kernel
and kernel-dependent package if the patch is accepted, so one
alternative I thought of would be to create a fake kernel build
directory where everything is symlinked to the real build
directory except scripts/, which is first copied and then make
unifdef is run before building aufs2.1. If that more complicated
solution is preferred, or if anyone has ideas for another one, I
can do that and submit a new patch.
* The patch was tested by building a livecd ISO that uses it, then
running the ISO from within virtualbox and installing aufs2.1-util
from within the livecd environment.
* The livecd was built using installation-cd-minimal.nix, with two
changes to the Nixos tree:
1. boot.kernelPackages = pkgs.linuxPackages_2_6_37 was added to
profiles/minimal.nix
2. config.boot.kernelPackages.aufs2 was changed to
config.boot.kernelPackages.aufs2_1 in iso-image.nix
I would have preferred to keep all changes within
profiles/minimal.nix, but I couldn't figure out how to override
iso-image.nix's definition of boot.extraModulePackages. Livecds
that use an older kernel can't be built with this iso-image.nix,
since we don't have aufs2.1 for them (just aufs2). If someone can
point me to how I can override things set in iso-image.nix, I'd
appreciate it.
make -C scripts unifdef compiles the unifdef application in the
scripts/ directory, and when Nix copies over the build tree to
$out/lib/modules/$version/build for kernel modules to reference, it
copies over all of scripts/ except the .o files. I can't speak for
other kernel versions, but at the least for 2.6.37.1 unifdef is not
built by default. If you look at the Makefile in scripts, unifdef is
listed under a comment saying that the following programs are only
built on-demand.
svn path=/nixpkgs/trunk/; revision=26548
2011-03-27 15:18:39 +00:00
|
|
|
aufs2_1_2_6_37 =
|
|
|
|
{ # From http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-standalone.git;a=tree;h=refs/heads/aufs2.1-37;hb=refs/heads/aufs2.1-37
|
|
|
|
# Note that this merely the patch needed to build AUFS2.1 as a
|
|
|
|
# standalone package.
|
|
|
|
name = "aufs2.1";
|
|
|
|
patch = ./aufs2.1-37.patch;
|
|
|
|
features.aufsBase = true;
|
|
|
|
};
|
|
|
|
|
2010-06-20 20:52:08 +00:00
|
|
|
# Increase the timeout on CIFS requests from 15 to 120 seconds to
|
|
|
|
# make CIFS more resilient to high load on the CIFS server.
|
|
|
|
cifs_timeout =
|
|
|
|
{ name = "cifs-timeout";
|
|
|
|
patch = ./cifs-timeout.patch;
|
2010-07-18 21:10:46 +00:00
|
|
|
features.cifsTimeout = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
no_xsave =
|
|
|
|
{ name = "no-xsave";
|
|
|
|
patch = fetchurl {
|
2010-09-09 17:07:12 +00:00
|
|
|
url = "http://kernel.ubuntu.com/git?p=rtg/ubuntu-maverick.git;a=blobdiff_plain;f=arch/x86/xen/enlighten.c;h=f7ff4c7d22954ab5eda464320241300bd5a32ee5;hp=1ea06f842a921557e958110e22941d53a2822f3c;hb=1a30f99;hpb=8f2ff69dce18ed856a8d1b93176f768b47eeed86";
|
2010-07-18 21:10:46 +00:00
|
|
|
name = "no-xsave.patch";
|
2010-09-09 17:07:12 +00:00
|
|
|
sha256 = "18732s3vmav5rpg6zqpiw2i0ll83pcc4gw266h6545pmbh9p7hky";
|
2010-07-18 21:10:46 +00:00
|
|
|
};
|
|
|
|
features.noXsave = true;
|
2010-06-20 20:52:08 +00:00
|
|
|
};
|
2010-07-25 12:15:59 +00:00
|
|
|
|
|
|
|
dell_rfkill =
|
|
|
|
{ name = "dell-rfkill";
|
|
|
|
patch = ./dell-rfkill.patch;
|
|
|
|
};
|
2010-09-17 15:56:42 +00:00
|
|
|
|
2010-10-07 22:10:28 +00:00
|
|
|
sheevaplug_modules_2_6_35 =
|
|
|
|
{ name = "sheevaplug_modules-2.6.35";
|
|
|
|
patch = ./sheevaplug_modules-2.6.35.patch;
|
|
|
|
};
|
|
|
|
|
2010-11-21 15:26:36 +00:00
|
|
|
mips_restart_2_6_36 =
|
|
|
|
{ name = "mips_restart_2_6_36";
|
|
|
|
patch = ./mips_restart.patch;
|
|
|
|
};
|
|
|
|
|
2010-09-17 15:56:42 +00:00
|
|
|
guruplug_defconfig =
|
2010-10-25 16:36:42 +00:00
|
|
|
{ # Default configuration for the GuruPlug. From
|
2010-09-17 15:56:42 +00:00
|
|
|
# <http://www.openplug.org/plugwiki/images/c/c6/Guruplug-patchset-2.6.33.2.tar.bz2>.
|
|
|
|
name = "guruplug-defconfig";
|
|
|
|
patch = ./guruplug-defconfig.patch;
|
|
|
|
};
|
|
|
|
|
|
|
|
guruplug_arch_number =
|
2010-10-25 16:36:42 +00:00
|
|
|
{ # Hack to match the `arch_number' of the U-Boot that ships with the
|
2010-09-17 15:56:42 +00:00
|
|
|
# GuruPlug. This is only needed when using this specific U-Boot
|
|
|
|
# binary. See
|
|
|
|
# <http://www.plugcomputer.org/plugwiki/index.php/Compiling_Linux_Kernel_for_the_Plug_Computer>.
|
|
|
|
name = "guruplug-arch-number";
|
|
|
|
patch = ./guruplug-mach-type.patch;
|
|
|
|
};
|
2010-10-25 16:36:42 +00:00
|
|
|
|
2011-03-21 15:53:22 +00:00
|
|
|
tuxonice_2_6_34 = makeTuxonicePatch {
|
|
|
|
version = "3.2-rc2";
|
|
|
|
kernelVersion = "2.6.34";
|
|
|
|
sha256 = "0bagqinmky1kmvg3vw8cdysqklxrsfjm7gqrpxviq9jq8vyycviz";
|
|
|
|
};
|
|
|
|
|
|
|
|
tuxonice_2_6_35 = makeTuxonicePatch {
|
|
|
|
version = "3.2-rc2";
|
|
|
|
kernelVersion = "2.6.35";
|
|
|
|
sha256 = "00jbrqq6p1lyvli835wczc0vqsn0z73jpb2aak3ak0vgnvsxw37q";
|
|
|
|
};
|
|
|
|
|
|
|
|
tuxonice_2_6_36 = makeTuxonicePatch {
|
|
|
|
version = "3.2-rc2";
|
|
|
|
kernelVersion = "2.6.36";
|
|
|
|
sha256 = "1vcw3gpjdghnkli46j37pc6rp8mqk8dh688jv8rppzsry0ll7b7k";
|
|
|
|
};
|
|
|
|
|
|
|
|
tuxonice_2_6_37 = makeTuxonicePatch {
|
|
|
|
version = "3.2-rc2";
|
|
|
|
kernelVersion = "2.6.37";
|
|
|
|
url = "http://tuxonice.net/files/current-tuxonice-for-2.6.37.patch_0.bz2";
|
|
|
|
sha256 = "0acllabvbm9pmjnh0zx9mgnp47xbrl9ih6i037c85h0ymnjsxdhk";
|
|
|
|
};
|
2011-03-21 15:42:21 +00:00
|
|
|
|
2009-12-14 15:28:55 +00:00
|
|
|
}
|