summary refs log tree commit diff
path: root/pkgs/os-specific/linux/klibc/shrunk.nix
Commit message (Collapse)AuthorAge
* treewide: remove redundant quotesvolth2019-09-08
|
* treewide: Add lots of platforms to packages with no metaTuomas Tynkkynen2016-08-02
| | | | Build-tested on x86_64 Linux and on Darwin.
* fix "libc}/lib" and similar referencesVladimír Čunát2015-05-05
| | | | | Done mostly without any verification. I didn't bother with libc}/include, as the path is still correct.
* * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra2012-01-18
| | | | | | function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
* * Fix a regression in klibcShrunk.Eelco Dolstra2008-05-28
| | | | svn path=/nixpkgs/trunk/; revision=11920
* * Put all packages that depend on a specific kernel (notably kernelEelco Dolstra2008-05-22
| | | | | | | | | | | | | | | | | | | | | | | | | | modules) together in an attribute set returned by the function "kernelPackagesFor" that takes a kernel as argument. For instance, kernelPackages_2_6_23 is the result of calling this function with kernel_2_6_23. This is necessary in NixOS to make it easier to override the kernel: it's not enough to just specify a different kernel (via the boot.kernel option), but you also need matching nvidiaDriver, aufs, iwlwifi, etc. Having a single attribute set that contains all kernel-related packages makes this much easier. * The kernel now has a passthru attribute "features" that allows NixOS expressions to test whether a kernel has certain features. For instance, the externel "iwlwifi" kernel module package should only be built on kernels < 2.6.24, as kernels >= 2.6.24 have iwlwifi support integrated. So the NixOS expressions can do the test "kernel.features ? iwlwifi" to see if the iwlwifi package should be built. Kernel patches can declare additional features. E.g., the fbsplash patch adds a "fbSplash" feature. svn path=/nixpkgs/trunk/; revision=11881
* * klibShrunk: just the klibc binaries without header files etc; usefulEelco Dolstra2008-03-14
for installation in initrds. svn path=/nixpkgs/trunk/; revision=11125