summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-02-20 14:17:49 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-02-20 14:17:49 +0000
commitf1ee7c77cde28e69abc414b5b92cd7c05089bfb9 (patch)
tree829f840b5b0544795ab2a88f137af009fb8e4f30 /perl-install/modules.pm
parent3cb288b92289c761902e7f49b94465a6bdc84180 (diff)
downloaddrakx-backup-do-not-use-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar
drakx-backup-do-not-use-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar.gz
drakx-backup-do-not-use-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar.bz2
drakx-backup-do-not-use-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar.xz
drakx-backup-do-not-use-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.zip
alias agpgart should be only for 2.6, since code doesn't allow this easily,
adding the agp module to modprobe.preload
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 9cc3bc39b..8e5e19288 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -313,9 +313,12 @@ sub write_conf() {
my @l;
push @l, 'scsi_hostadapter' if !is_empty_array_ref($conf{scsi_hostadapter}{probeall});
push @l, 'bttv' if detect_devices::matching_driver('^bttv$');
+ my @l_26 = @l;
+ if (my ($agp) = probe_category('various/agpgart')) {
+ push @l_26, $agp->{driver};
+ }
append_to_modules_loaded_at_startup("$::prefix/etc/modules", @l);
- append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l);
-
+ append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l_26);
#- use module-init-tools script for the moment
run_program::rooted($::prefix, "/sbin/generate-modprobe.conf", ">", "/etc/modprobe.conf") if -e "$::prefix/etc/modprobe.conf";
}