diff options
author | Nicolas Planel <nplanel@mandriva.com> | 2004-01-21 17:55:02 +0000 |
---|---|---|
committer | Nicolas Planel <nplanel@mandriva.com> | 2004-01-21 17:55:02 +0000 |
commit | d5d2d55330cb338037a445c5cfd9ade3ac0b95ee (patch) | |
tree | fcae0d8295c412d4b0976debffa98a3342d7009f /perl-install/modules.pm | |
parent | e37db334857e6bc3c09086fdb10457feb0036b0a (diff) | |
download | drakx-d5d2d55330cb338037a445c5cfd9ade3ac0b95ee.tar drakx-d5d2d55330cb338037a445c5cfd9ade3ac0b95ee.tar.gz drakx-d5d2d55330cb338037a445c5cfd9ade3ac0b95ee.tar.bz2 drakx-d5d2d55330cb338037a445c5cfd9ade3ac0b95ee.tar.xz drakx-d5d2d55330cb338037a445c5cfd9ade3ac0b95ee.zip |
add *-agp module support
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index f67e0e098..b7cd594a5 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -378,6 +378,7 @@ sub when_load { load('snd-pcm-oss') if $name =~ /^snd-/; add_alias('ieee1394-controller', $name) if member($name, 'ohci1394'); add_probeall('usb-interface', $name) if $name =~ /usb-[uo]hci/ || $name eq 'ehci-hcd'; + add_alias('/dev/agpgart', $name) if $name =~ /-agp$/; $conf{$name}{options} = join " ", @options if @options; |