diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-20 14:17:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-20 14:17:49 +0000 |
commit | f1ee7c77cde28e69abc414b5b92cd7c05089bfb9 (patch) | |
tree | 829f840b5b0544795ab2a88f137af009fb8e4f30 /perl-install/modules.pm | |
parent | 3cb288b92289c761902e7f49b94465a6bdc84180 (diff) | |
download | drakx-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar drakx-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar.gz drakx-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar.bz2 drakx-f1ee7c77cde28e69abc414b5b92cd7c05089bfb9.tar.xz drakx-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.pm | 7 |
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"; } |