summary refs log tree commit diff
path: root/pkgs/os-specific/linux/wis-go7007
Commit message (Collapse)AuthorAge
* Partially revert my recent kernelPackages changesShea Levy2013-03-24
| | | | | | | | | | | | | | | | | First, pass in `self' again so that overriding works properly (thanks for pointing that out, @edolstra) Second, instead of having linuxPackages*.kernel mean something different inside the set and out, add a new attribute linuxPackages*.kernelDev, which for the generic kernel is simply linuxPackages*.kernel but for the manual-config kernel is the `dev' output (which has the build tree, source tree, etc.) The second change required trivial modifications in a bunch of expressions, I verified that all of the linuxPackages* sets defined in all-packages.nix have the same drv paths before and after the change. Signed-off-by: Shea Levy <shea@shealevy.com>
* * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra2012-01-18
| | | | | | function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
* * wis-go7007: updated for Linux 2.6.26.Eelco Dolstra2008-08-21
| | | | svn path=/nixpkgs/trunk/; revision=12673
* * Some patches to make gorecord more useful.Eelco Dolstra2008-06-20
| | | | svn path=/nixpkgs/trunk/; revision=12172
* * Remove misguided patch.Eelco Dolstra2008-06-20
| | | | svn path=/nixpkgs/trunk/; revision=12171
* * wis-go7007: make it compile on Linux >= 2.6.24. Added PCI idEelco Dolstra2008-06-20
| | | | | | 093b:a104. svn path=/nixpkgs/trunk/; revision=12168
* * 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
* * Use fxload.Eelco Dolstra2008-02-04
| | | | svn path=/nixpkgs/trunk/; revision=10488
* * Driver for the Go 7007, used in the Plextor ConvertX USB TV tuner.Eelco Dolstra2008-02-01
Thanks to Martin Bravenboer for donating the hardware :-) * Latest udev. svn path=/nixpkgs/trunk/; revision=10452