From 700529a81000e551676a591369fc7c9ea13a1a33 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Thu, 18 Jul 2002 10:15:29 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'V1_1_8_6mdk'. --- perl-install/unused/otherinsmod.pm | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 perl-install/unused/otherinsmod.pm (limited to 'perl-install/unused/otherinsmod.pm') diff --git a/perl-install/unused/otherinsmod.pm b/perl-install/unused/otherinsmod.pm deleted file mode 100644 index 1a8eee9ff..000000000 --- a/perl-install/unused/otherinsmod.pm +++ /dev/null @@ -1,26 +0,0 @@ -use diagnostics; -use strict; - -sub insmod { - - @_ or die "usage: insmod .o [params]\n"; - - my $file = shift; - my $tmpname; - - unless (-r $file) { - local *F; - open F, "/modules/modules.cgz" or die "error opening /modules/modules.cgz"; - - $tmpname = "/tmp/" . basename($file); - - installCpioFile(\*F, $file, $tmpname, 0) or die "error extracting file"; - } - - my $rc = insmod_main($tmpname || $file, @_); - - unlink($tmpname); - - return $rc; -} -sub modprobe { &insmod } -- cgit v1.2.1