Messages in this thread Patch in this message |  | | From | Keith Owens <> | Subject | Re: 2.4.9-ac15 (double entries for DRI cards) | Date | Thu, 27 Sep 2001 12:16:42 +1000 |
| |
On Wed, 26 Sep 2001 13:48:26 -0400 (EDT), Stephen Torri <storri@ameritech.net> wrote: >In "Character Devices" when configuring the kernel using xconfig there are >double entries for video cards under Direct Rendering Manager. The >following cards are reported twice: > >3dfx Banshee/Voodoo3+ >3dlabs GMX 2000 >ATI Rage 128 >ATI Radeon >Intel I810 >Matrox G200/G400/G450 > >They menu is correct when doing menuconfig. They are only reported once.
That is normal with xconfig, it displays all possible options and greys out the ones that you cannot select. Trivial patch to make it more obvious what is going on, against 2.4.9-ac15.
Index: 9.42/drivers/char/Config.in --- 9.42/drivers/char/Config.in Sat, 22 Sep 2001 14:41:20 +1000 kaos (linux-2.4/b/c/3_Config.in 1.2.1.1.4.3.1.5 644) +++ 9.42(w)/drivers/char/Config.in Thu, 27 Sep 2001 12:11:54 +1000 kaos (linux-2.4/b/c/3_Config.in 1.2.1.1.4.3.1.5 644) @@ -219,8 +219,10 @@ bool 'Direct Rendering Manager (XFree86 if [ "$CONFIG_DRM" = "y" ]; then bool ' Build drivers for new (XFree 4.1) DRM' CONFIG_DRM_NEW if [ "$CONFIG_DRM_NEW" = "y" ]; then + comment 'DRM 4.1 drivers' source drivers/char/drm/Config.in else + comment 'DRM 4.0 drivers' define_bool CONFIG_DRM_OLD y source drivers/char/drm-4.0/Config.in fi - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |