diff options
author | Leif Delgass <ldelgass@users.sourceforge.net> | 2003-04-22 19:42:27 +0000 |
---|---|---|
committer | Leif Delgass <ldelgass@users.sourceforge.net> | 2003-04-22 19:42:27 +0000 |
commit | 22608a414d7b7ef32ca51b9123be8341ddd5e8ce (patch) | |
tree | c6535c96f549b3b948bc513a75b2b1e2d45388ee | |
parent | 879e3d335c09bfe069948754600543291e8f8475 (diff) |
Only mga, i810, i830 require AGP (should mga define __MUST_HAVE_AGP?)
-rw-r--r-- | linux/Makefile.linux | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/linux/Makefile.linux b/linux/Makefile.linux index 0adfaa06..b5085919 100644 --- a/linux/Makefile.linux +++ b/linux/Makefile.linux @@ -275,6 +275,15 @@ endif ifneq (,$(findstring tdfx,$(DRM_MODULES))) CONFIG_DRM_TDFX := m endif +ifneq (,$(findstring r128,$(DRM_MODULES))) +CONFIG_DRM_R128 := m +endif +ifneq (,$(findstring radeon,$(DRM_MODULES))) +CONFIG_DRM_RADEON := m +endif +ifneq (,$(findstring sis,$(DRM_MODULES))) +CONFIG_DRM_SIS := m +endif # These require AGP support @@ -285,18 +294,9 @@ endif ifneq (,$(findstring i810,$(DRM_MODULES))) CONFIG_DRM_I810 := m endif -ifneq (,$(findstring r128,$(DRM_MODULES))) -CONFIG_DRM_R128 := m -endif -ifneq (,$(findstring radeon,$(DRM_MODULES))) -CONFIG_DRM_RADEON := m -endif ifneq (,$(findstring i830,$(DRM_MODULES))) CONFIG_DRM_I830 := m endif -ifneq (,$(findstring sis,$(DRM_MODULES))) -CONFIG_DRM_SIS := m -endif endif include $(DRMSRCDIR)/Makefile.kernel |