diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-05-07 16:07:05 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-05-07 16:07:05 +0000 |
commit | 0a0cb2468189f6a08d843859c4cf735792285dca (patch) | |
tree | afccfb96252f7cf1966fc678d5c1050d91b3ccdb /perl-install | |
parent | 7ebf2e6d385b05fbfa9ff646072a27bcf037c82f (diff) | |
download | drakx-0a0cb2468189f6a08d843859c4cf735792285dca.tar drakx-0a0cb2468189f6a08d843859c4cf735792285dca.tar.gz drakx-0a0cb2468189f6a08d843859c4cf735792285dca.tar.bz2 drakx-0a0cb2468189f6a08d843859c4cf735792285dca.tar.xz drakx-0a0cb2468189f6a08d843859c4cf735792285dca.zip |
Rename ide-disk to ide-gd_mod
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index c92ae3a84..4e0812597 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,4 @@ +- ide-disk module is now named ide-gd_mod - add new 'touchpad' TYPE to rpmsrate - add support for ElanTech touchpads (found on EEEPCs) - harddrake: diff --git a/perl-install/modules.pm b/perl-install/modules.pm index e1ad11906..fb7ff9f4f 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -258,7 +258,7 @@ sub when_load_category { if ($category =~ m,disk/ide,) { $conf->add_probeall('ide-controller', $name); - eval { load('ide_disk') }; + eval { load('ide_gd_mod') }; } elsif ($category =~ m,disk/(scsi|hardware_raid|sata|firewire),) { $conf->add_probeall('scsi_hostadapter', $name); eval { load('sd_mod') }; |