diff options
author | Felix Kuehling <fxkuehl@gmx.de> | 2005-05-17 02:08:02 +0000 |
---|---|---|
committer | Felix Kuehling <fxkuehl@gmx.de> | 2005-05-17 02:08:02 +0000 |
commit | 6d4b9a830bb5678460621b652e914cbcb16d8c4c (patch) | |
tree | 04826d93d78a81fff674271b63e0e12e23e786f3 /linux-core/Makefile | |
parent | e051cd19c00ed28997ff6fece0d1d4308b171229 (diff) |
Savage doesn't require AGP any more. Enable build even without CONFIG_AGP.
Diffstat (limited to 'linux-core/Makefile')
-rw-r--r-- | linux-core/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-core/Makefile b/linux-core/Makefile index 64704a35..5db549ea 100644 --- a/linux-core/Makefile +++ b/linux-core/Makefile @@ -354,6 +354,9 @@ endif ifneq (,$(findstring ffb,$(DRM_MODULES))) CONFIG_DRM_FFB := m endif +ifneq (,$(findstring savage,$(DRM_MODULES))) +CONFIG_DRM_SAVAGE := m +endif # These require AGP support @@ -370,9 +373,6 @@ endif ifneq (,$(findstring i915,$(DRM_MODULES))) CONFIG_DRM_I915 := m endif -ifneq (,$(findstring savage,$(DRM_MODULES))) -CONFIG_DRM_SAVAGE := m -endif endif include $(DRMSRCDIR)/Makefile.kernel |