3
0
Fork 0
forked from mirrors/nixpkgs

* Enable staging drivers in Linux 3.x. Staging drivers are more experimental

and lower quality than regular drivers.  However, there are a lot of drivers
  for wireless cards that we really need to have.  And it doesn't really hurt
  to have these drivers if you don't need them.
* Enable the Radeon KMS option.  This shouldn't be a problem since the X driver
  supports KMS (I think).

svn path=/nixpkgs/trunk/; revision=29994
This commit is contained in:
Eelco Dolstra 2011-10-24 16:30:59 +00:00
parent b3f1015e6b
commit f405ee266b
2 changed files with 12 additions and 2 deletions
pkgs/os-specific/linux/kernel

View file

@ -77,8 +77,9 @@ let
FB_GEODE y
# Video configuration
# The intel drivers already require KMS
# Enable KMS for devices whose X.org driver supports it.
DRM_I915_KMS y
DRM_RADEON_KMS y
# Hybrid graphics support
VGA_SWITCHEROO y
@ -192,6 +193,10 @@ let
CGROUP_MEM_RES_CTLR_SWAP? y
DEVPTS_MULTIPLE_INSTANCES? y
# Enable staging drivers. These are somewhat experimental, but
# they generally don't hurt.
STAGING y
${if kernelPlatform ? kernelExtraConfig then kernelPlatform.kernelExtraConfig else ""}
${extraConfig}
'';

View file

@ -77,8 +77,9 @@ let
FB_GEODE y
# Video configuration
# The intel drivers already require KMS
# Enable KMS for devices whose X.org driver supports it.
DRM_I915_KMS y
DRM_RADEON_KMS y
# Hybrid graphics support
VGA_SWITCHEROO y
@ -192,6 +193,10 @@ let
CGROUP_MEM_RES_CTLR_SWAP? y
DEVPTS_MULTIPLE_INSTANCES? y
# Enable staging drivers. These are somewhat experimental, but
# they generally don't hurt.
STAGING y
${if kernelPlatform ? kernelExtraConfig then kernelPlatform.kernelExtraConfig else ""}
${extraConfig}
'';