* Merge diff between trunk/pkgs@1646 and branches/nixos-pkgs@2256;
this contains mostly Armijn's pure stdenv-linux. * After unpacking the statically linked GCC, patch all store paths to /nix/store/ffffffffffffffffffffffffffffffff. Ugly hack to prevent undeclared references but it works. * We don't need Glib's dynamic libraries in the first bootstrap stage; delete them. Actually the downloaded Glibc binary is only needed for building Glibc, since GCC needs a C compiler to build some programs in `configure'. So static linking is fine for that. Maybe it would be better to patch `configure' so that we don't need a pre-built Glibc at all. * Set the svn:executable property on `cp' and `patchelf'. * In Glibc, revert to LinuxThreads. Maybe NPTL will work, but TLS support is a problem. * Delete most Glibc patches; they're no longer needed since the branch updated it to 20050110. * Some cleanups. svn path=/nixpkgs/trunk/; revision=2258
This commit is contained in:
@@ -11,7 +11,7 @@ buildPhase=buildPhase
|
||||
installPhase() {
|
||||
mkdir $out
|
||||
mkdir $out/include
|
||||
cp -prvd include/linux include/asm-i386 $out/include
|
||||
cp -prvd include/linux include/asm-i386 include/asm-generic $out/include
|
||||
cd $out/include
|
||||
ln -s asm-i386 asm
|
||||
echo -n > $out/include/linux/autoconf.h
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
assert stdenv.system == "i686-linux";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "linux-headers-2.4.25-i386";
|
||||
name = "linux-headers-2.6.9-i386";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/linux-2.4.25.tar.bz2;
|
||||
md5 = "5fc8e9f43fa44ac29ddf9a9980af57d8";
|
||||
url = ftp://ftp.nluug.nl/pub/os/Linux/system/kernel/v2.6/linux-2.6.9.tar.bz2;
|
||||
md5 = "e921200f074ca97184e150ef5a4af825";
|
||||
};
|
||||
}
|
||||
|
||||
10
pkgs/os-specific/linux/modutils/default.nix
Normal file
10
pkgs/os-specific/linux/modutils/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl, bison, flex}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "modutils-2.4.25";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.nl.kernel.org/pub/linux/utils/kernel/modutils/v2.4/modutils-2.4.25.tar.bz2;
|
||||
md5 = "2c0cca3ef6330a187c6ef4fe41ecaa4d";
|
||||
};
|
||||
buildInputs = [bison flex];
|
||||
}
|
||||
@@ -6,6 +6,7 @@ cd net-tools-*
|
||||
cp $config config.h
|
||||
sed "s^/usr/share/man^/share^" < man/Makefile > tmp
|
||||
mv tmp man/Makefile
|
||||
patch -p1 < $patch
|
||||
make
|
||||
mkdir $out
|
||||
make BASEDIR=$out install
|
||||
|
||||
@@ -8,4 +8,5 @@ stdenv.mkDerivation {
|
||||
md5 = "888774accab40217dde927e21979c165";
|
||||
};
|
||||
config = ./config.h;
|
||||
patch = ./net-tools-labels.patch;
|
||||
}
|
||||
|
||||
38
pkgs/os-specific/linux/net-tools/net-tools-labels.patch
Normal file
38
pkgs/os-specific/linux/net-tools/net-tools-labels.patch
Normal file
@@ -0,0 +1,38 @@
|
||||
diff -ruN net-tools-1.60/hostname.c net-tools-1.60-new/hostname.c
|
||||
--- net-tools-1.60/hostname.c 2001-04-08 19:04:23.000000000 +0200
|
||||
+++ net-tools-1.60-new/hostname.c 2004-12-17 14:48:15.624174382 +0100
|
||||
@@ -98,6 +98,7 @@
|
||||
fprintf(stderr, _("%s: name too long\n"), program_name);
|
||||
break;
|
||||
default:
|
||||
+ break;
|
||||
}
|
||||
exit(1);
|
||||
};
|
||||
@@ -117,6 +118,7 @@
|
||||
fprintf(stderr, _("%s: name too long\n"), program_name);
|
||||
break;
|
||||
default:
|
||||
+ break;
|
||||
}
|
||||
exit(1);
|
||||
};
|
||||
@@ -174,6 +176,7 @@
|
||||
printf("%s\n", hp->h_name);
|
||||
break;
|
||||
default:
|
||||
+ break;
|
||||
}
|
||||
}
|
||||
|
||||
diff -ruN net-tools-1.60/lib/inet_sr.c net-tools-1.60-new/lib/inet_sr.c
|
||||
--- net-tools-1.60/lib/inet_sr.c 2000-02-20 22:46:45.000000000 +0100
|
||||
+++ net-tools-1.60-new/lib/inet_sr.c 2004-12-17 14:37:15.416349441 +0100
|
||||
@@ -105,6 +105,7 @@
|
||||
case 2:
|
||||
isnet = 0; break;
|
||||
default:
|
||||
+ break;
|
||||
}
|
||||
|
||||
/* Fill in the other fields. */
|
||||
Reference in New Issue
Block a user