mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
* Dietlibc: symlink to the asm directory from kernel-headers, because
some programs (such as module-init-tools) need it. * Remove module-init-tools-static, it now builds out of the box with dietlibc. svn path=/nixpkgs/trunk/; revision=6938
This commit is contained in:
parent
039b141471
commit
e8261201d8
@ -19,6 +19,11 @@ postInstall() {
|
|||||||
# Remove <dlfcn.h>, it makes some packages think we can load
|
# Remove <dlfcn.h>, it makes some packages think we can load
|
||||||
# dynamic libraries.
|
# dynamic libraries.
|
||||||
rm $out/include/dlfcn.h
|
rm $out/include/dlfcn.h
|
||||||
|
|
||||||
|
# Dietlibc has a asm include directory, whose presence makes the
|
||||||
|
# asm directory of kernel-headers unreachable. So make symlinks
|
||||||
|
# from the dietlibc asm to the kernel-headers asm.
|
||||||
|
ln -s $kernelHeaders/include/asm/* $out/include/asm/ || true
|
||||||
}
|
}
|
||||||
|
|
||||||
genericBuild
|
genericBuild
|
||||||
|
@ -9,7 +9,9 @@ stdenv.mkDerivation {
|
|||||||
md5 = "2465d652fff6f1fad3da3b98e60e83c9";
|
md5 = "2465d652fff6f1fad3da3b98e60e83c9";
|
||||||
};
|
};
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
inherit glibc;
|
inherit glibc;
|
||||||
|
kernelHeaders = glibc.kernelHeaders;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
export LDFLAGS=-static
|
|
||||||
|
|
||||||
genericBuild
|
|
@ -1,13 +0,0 @@
|
|||||||
{stdenv, fetchurl}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "module-init-tools-3.2.2";
|
|
||||||
builder = ./builder.sh;
|
|
||||||
src = fetchurl {
|
|
||||||
url = http://nix.cs.uu.nl/dist/tarballs/module-init-tools-3.2.2.tar.bz2;
|
|
||||||
md5 = "a1ad0a09d3231673f70d631f3f5040e9";
|
|
||||||
};
|
|
||||||
patches = [./module-init-tools-static.patch];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
|||||||
diff -ruN module-init-tools-3.2.2/configure module-init-tools-3.2.2.new/configure
|
|
||||||
--- module-init-tools-3.2.2/configure 2005-12-07 05:43:46.000000000 +0100
|
|
||||||
+++ module-init-tools-3.2.2.new/configure 2005-12-24 00:37:44.000000000 +0100
|
|
||||||
@@ -1741,7 +1741,7 @@
|
|
||||||
#define CONFIG_USE_ZLIB 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
- zlib_flags="-Wl,-Bstatic -lz -Wl,-Bdynamic"
|
|
||||||
+ zlib_flags="-Wl,-Bstatic -lz"
|
|
||||||
fi
|
|
||||||
fi;
|
|
||||||
|
|
@ -7,6 +7,5 @@ stdenv.mkDerivation {
|
|||||||
md5 = "a1ad0a09d3231673f70d631f3f5040e9";
|
md5 = "a1ad0a09d3231673f70d631f3f5040e9";
|
||||||
};
|
};
|
||||||
patches = [./module-dir.patch];
|
patches = [./module-dir.patch];
|
||||||
|
postInstall = "rm $out/sbin/insmod.static"; # don't need it
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2143,10 +2143,6 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
module_init_toolsStatic = import ../os-specific/linux/module-init-tools-static {
|
|
||||||
inherit fetchurl stdenv;
|
|
||||||
};
|
|
||||||
|
|
||||||
modutils = import ../os-specific/linux/modutils {
|
modutils = import ../os-specific/linux/modutils {
|
||||||
inherit fetchurl bison flex;
|
inherit fetchurl bison flex;
|
||||||
stdenv = overrideGCC stdenv gcc34;
|
stdenv = overrideGCC stdenv gcc34;
|
||||||
|
Loading…
Reference in New Issue
Block a user