summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-09-29 01:25:37 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-09-29 01:25:37 +0000
commit9a167fa4c87158b4f6e225dbb46cea8386ed3fe6 (patch)
treeea4cbee729886128df4db51f75b6554f153f8a17 /perl-install
parent5f56b37708adcd157be6c262a0e2164063c65b64 (diff)
downloaddrakx-9a167fa4c87158b4f6e225dbb46cea8386ed3fe6.tar
drakx-9a167fa4c87158b4f6e225dbb46cea8386ed3fe6.tar.gz
drakx-9a167fa4c87158b4f6e225dbb46cea8386ed3fe6.tar.bz2
drakx-9a167fa4c87158b4f6e225dbb46cea8386ed3fe6.tar.xz
drakx-9a167fa4c87158b4f6e225dbb46cea8386ed3fe6.zip
no_comment
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/ChangeLog5
-rw-r--r--perl-install/modules.pm4
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) };