From 06264250c1aa90f2bc2cdb29944beecfb7037dad Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 13 Mar 2006 12:23:06 +0000 Subject: AGP devices must be detected prior to video cards because some DRM drivers doesn't like be loaded after agpgart thus order in /etc/modprobe.preload is important (modules.pm should enforce such sorting) --- perl-install/harddrake/data.pm | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'perl-install/harddrake') diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index f0c54e683..996b19c16 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -131,6 +131,17 @@ our @tree = checked_on_boot => 0, }, + # AGP devices must be detected prior to video cards because some DRM drivers doesn't like be loaded + # after agpgart thus order in /etc/modprobe.preload is important (modules.pm should enforce such sorting): + { + class => "AGP", + string => N("AGP controllers"), + icon => "memory.png", + configurator => "", + detector => sub { f(modules::probe_category('various/agpgart')) }, + checked_on_boot => 1, + }, + { class => "VIDEO", string => N("Videocard"), @@ -310,15 +321,6 @@ our @tree = checked_on_boot => 0, }, - { - class => "AGP", - string => N("AGP controllers"), - icon => "memory.png", - configurator => "", - detector => sub { f(modules::probe_category('various/agpgart')) }, - checked_on_boot => 1, - }, - { class => "PRINTER", string => N("Printer"), -- cgit v1.2.1