diff options
-rw-r--r-- | perl-install/ChangeLog | 5 | ||||
-rw-r--r-- | perl-install/modules.pm | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index d32cf8296..c7b3f162e 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,3 +1,8 @@ +2000-09-28 Pixel <pixel@mandrakesoft.com> + + * modules.pm (load_thiskind): add read_already_loaded cuz of + pcmcia + 2000-09-28 Guillaume Cottenceau <gc@mandrakesoft.com> * share/compssList: add nasty DrakSync and DrakProfile with 50 0 50 diff --git a/perl-install/modules.pm b/perl-install/modules.pm index f13c86ec2..9c099d434 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -586,6 +586,10 @@ sub read_stage1_conf { sub load_thiskind { my ($type, $f) = @_; + #- get_that_type returns the PCMCIA cards. It doesn't know they are already + #- loaded, so: + read_already_loaded(); + grep { $f->($_->{description}, $_->{driver}) if $f; eval { load($_->{driver}, $type) }; |