diff options
author | Jakob Bornecrantz <jakob@aurora.(none)> | 2008-01-18 15:00:31 +0100 |
---|---|---|
committer | Jakob Bornecrantz <jakob@aurora.(none)> | 2008-01-18 15:00:31 +0100 |
commit | fb9ea12438de95a6ac085879e079055eaea3daf8 (patch) | |
tree | 4792998eef4094a625d39c5ebccd063e87722cdb /linux-core/Makefile | |
parent | 6ba979ea467ef6ff76c32ee63ee9a6d4073ec672 (diff) |
Made radeon_ms not always compile
Diffstat (limited to 'linux-core/Makefile')
-rw-r--r-- | linux-core/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linux-core/Makefile b/linux-core/Makefile index 76ed3e39..2f33e5df 100644 --- a/linux-core/Makefile +++ b/linux-core/Makefile @@ -287,7 +287,7 @@ CONFIG_DRM_MACH64 := n CONFIG_DRM_NV := n CONFIG_DRM_NOUVEAU := n CONFIG_DRM_XGI := n -CONFIG_DRM_RADEON_MS := m +CONFIG_DRM_RADEON_MS := n # Enable module builds for the modules requested/supported. @@ -327,6 +327,9 @@ endif ifneq (,$(findstring xgi,$(DRM_MODULES))) CONFIG_DRM_XGI := m endif +ifneq (,$(findstring radeon_ms,$(DRM_MODULES))) +CONFIG_DRM_RADEON_MS := m +endif # These require AGP support |