summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-04-28 03:32:48 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-04-28 03:32:48 +0000
commit8858defd03748e253af7540f60f72a39a4bc789e (patch)
treea788756c4048f8b9c857897ad05ee90338bc671a /perl-install/modules.pm
parentf016148bfe188b14a0f73345a0096e2543c95d89 (diff)
downloaddrakx-8858defd03748e253af7540f60f72a39a4bc789e.tar
drakx-8858defd03748e253af7540f60f72a39a4bc789e.tar.gz
drakx-8858defd03748e253af7540f60f72a39a4bc789e.tar.bz2
drakx-8858defd03748e253af7540f60f72a39a4bc789e.tar.xz
drakx-8858defd03748e253af7540f60f72a39a4bc789e.zip
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm38
1 files changed, 22 insertions, 16 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index db1c7f415..de85d06d1 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -382,7 +382,7 @@ sub load {
#- $type ||= ($drivers{$name} || { type => 'unknown'})->{type};
eval { load($_, 'prereq') } foreach @{$deps{$name}};
- load_raw($name, @options);
+ load_raw([ $name, @options ]);
}
push @{$loaded{$type}}, $name;
@@ -401,10 +401,7 @@ sub load_multi {
$::testing and log::l("i would install modules @l"), return;
- my $cz = "/lib/modules.cz"; -e $cz or $cz .= "2";
- run_program::run("extract_archive", $cz, "/tmp", map { "$_.o" } @l);
- run_program::run(["insmod_", "insmod"], "-f", "/tmp/$_.o") and $conf{$_}{loaded} = 1 foreach @l;
- unlink map { "/tmp/$_.o" } @l;
+ load_raw(map { [ $_ ] } @l);
}
sub unload($;$) {
@@ -417,22 +414,31 @@ sub unload($;$) {
remove_alias($m) if $remove_alias;
}
-sub load_raw($@) {
- my ($name, @options) = @_;
+sub load_raw {
+ my @l = map { my ($i, @i) = @$_; [ $i, \@i ] } @_;
- run_program::run("insmod", $name, grep { $_ } @options) or die("insmod $name failed");
+ my $cz = "/lib/modules.cz"; -e $cz or $cz .= "2";
+ run_program::run("extract_archive", $cz, "/tmp", map { "$_->[0].o" } @l);
+ my @failed = grep {
+ my $m = "/tmp/$_->[0].o";
+ if (-e $m && run_program::run(["insmod_", "insmod"], "-f", $m, @{$_->[1]})) {
+ unlink $m;
+ $conf{$_->[0]}{loaded} = 1;
+ '';
+ } else {
+ log::l("missing module $_->[0]") unless -e $m;
+ -e $m;
+ }
+ } @l;
#- this is a hack to make plip go
- if ($name eq "parport_pc") {
- foreach (@options) {
- /^irq=(\d+)/ or next;
- log::l("writing to /proc/parport/0/irq");
- local *F;
- open F, "> /proc/parport/0/irq" or last;
- print F $1;
+ foreach (@l) {
+ $_->[0] eq "parport_pc" or next;
+ foreach (@{$_->[1]}) {
+ /^irq=(\d+)/ and eval { output "/proc/parport/0/irq", $1 };
}
}
- $conf{$name}{loaded} = 1;
+ die "insmod'ing modules " . join(", ", @failed) . " failed" if @failed;
}
sub read_already_loaded() {